(fetch_flags0): New prototype.
Showing
1 changed file
with
6 additions
and
3 deletions
... | @@ -125,7 +125,7 @@ struct imap4d_command | ... | @@ -125,7 +125,7 @@ struct imap4d_command |
125 | #define ERR_NO_OFILE 2 | 125 | #define ERR_NO_OFILE 2 |
126 | #define ERR_TIMEOUT 3 | 126 | #define ERR_TIMEOUT 3 |
127 | #define ERR_SIGNAL 4 | 127 | #define ERR_SIGNAL 4 |
128 | 128 | ||
129 | /* Namespace numbers */ | 129 | /* Namespace numbers */ |
130 | #define NS_PRIVATE 0 | 130 | #define NS_PRIVATE 0 |
131 | #define NS_OTHER 1 | 131 | #define NS_OTHER 1 |
... | @@ -147,7 +147,7 @@ extern int state; | ... | @@ -147,7 +147,7 @@ extern int state; |
147 | extern volatile size_t children; | 147 | extern volatile size_t children; |
148 | extern int is_virtual; | 148 | extern int is_virtual; |
149 | extern struct daemon_param daemon_param; | 149 | extern struct daemon_param daemon_param; |
150 | 150 | ||
151 | #ifndef HAVE_STRTOK_R | 151 | #ifndef HAVE_STRTOK_R |
152 | extern char *strtok_r __P((char *s, const char *delim, char **save_ptr)); | 152 | extern char *strtok_r __P((char *s, const char *delim, char **save_ptr)); |
153 | #endif | 153 | #endif |
... | @@ -185,7 +185,10 @@ extern int imap4d_subscribe __P ((struct imap4d_command *, char *)); | ... | @@ -185,7 +185,10 @@ extern int imap4d_subscribe __P ((struct imap4d_command *, char *)); |
185 | extern int imap4d_uid __P ((struct imap4d_command *, char *)); | 185 | extern int imap4d_uid __P ((struct imap4d_command *, char *)); |
186 | extern int imap4d_unsubscribe __P ((struct imap4d_command *, char *)); | 186 | extern int imap4d_unsubscribe __P ((struct imap4d_command *, char *)); |
187 | extern int imap4d_namespace __P ((struct imap4d_command *, char *)); | 187 | extern int imap4d_namespace __P ((struct imap4d_command *, char *)); |
188 | 188 | ||
189 | /* Shared between fetch and store */ | ||
190 | extern void fetch_flags0 (const char *prefix, message_t msg, int isuid); | ||
191 | |||
189 | /* Synchronisation on simultaneous access. */ | 192 | /* Synchronisation on simultaneous access. */ |
190 | extern int imap4d_sync __P ((void)); | 193 | extern int imap4d_sync __P ((void)); |
191 | extern int imap4d_sync_flags __P ((size_t)); | 194 | extern int imap4d_sync_flags __P ((size_t)); | ... | ... |
-
Please register or sign in to post a comment