comparison src/imap/cmd-capability.c @ 903:fd8888f6f037 HEAD

Naming style changes, finally got tired of most of the typedefs. Also the previous enum -> macro change reverted so that we don't use the highest bit anymore, that's incompatible with old indexes so they will be rebuilt.
author Timo Sirainen <tss@iki.fi>
date Sun, 05 Jan 2003 15:09:51 +0200
parents 925d6eb5f8be
children bc3307f2f35d
comparison
equal deleted inserted replaced
902:5043e48c022f 903:fd8888f6f037
1 /* Copyright (C) 2002 Timo Sirainen */ 1 /* Copyright (C) 2002 Timo Sirainen */
2 2
3 #include "common.h" 3 #include "common.h"
4 #include "commands.h" 4 #include "commands.h"
5 5
6 int cmd_capability(Client *client) 6 int cmd_capability(struct client *client)
7 { 7 {
8 client_send_line(client, "* CAPABILITY " CAPABILITY_STRING); 8 client_send_line(client, "* CAPABILITY " CAPABILITY_STRING);
9 9
10 client_sync_full(client); 10 client_sync_full(client);
11 client_send_tagline(client, "OK Capability completed."); 11 client_send_tagline(client, "OK Capability completed.");