X-Git-Url: http://git.madism.org/?a=blobdiff_plain;f=imap%2Fmx_imap.c;h=1c4358f00813dbad88151fd235bc2a20fcd0a952;hb=5b0581b41f115cd0442037a97db313ef5b5b8822;hp=53056fce71ba567b2b4ae3b89cec910c3ffc2c1b;hpb=b3cb6ed8d36c550a2e589910ce51bbc8352ff57c;p=apps%2Fmadmutt.git diff --git a/imap/mx_imap.c b/imap/mx_imap.c index 53056fc..1c4358f 100644 --- a/imap/mx_imap.c +++ b/imap/mx_imap.c @@ -10,6 +10,9 @@ #include #include +#include +#include +#include #include "mutt.h" #include "imap_private.h" @@ -17,12 +20,9 @@ #include "mx.h" #include "mx_imap.h" -#include "lib/mem.h" -#include "lib/str.h" -#include "url.h" -int imap_is_magic (const char* path, struct stat* st) { +int imap_is_magic (const char* path, struct stat* st __attribute__ ((unused))) { url_scheme_t s; if (!path || !*path) return (-1); @@ -35,7 +35,9 @@ static int acl_check_imap (CONTEXT* ctx, int bit) { mutt_bit_isset (((IMAP_DATA*) ctx->data)->rights, bit)); } -static int imap_open_new_message (MESSAGE * msg, CONTEXT * dest, HEADER * hdr) +static int imap_open_new_message (MESSAGE * msg, + CONTEXT * dest __attribute__ ((unused)), + HEADER * hdr __attribute__ ((unused))) { char tmp[_POSIX_PATH_MAX]; @@ -44,13 +46,15 @@ static int imap_open_new_message (MESSAGE * msg, CONTEXT * dest, HEADER * hdr) mutt_perror (tmp); return (-1); } - msg->path = str_dup (tmp); + msg->path = m_strdup(tmp); return 0; } /* this ugly kludge is required since the last int to * imap_check_mailbox() doesn't mean 'lock' but 'force'... */ -static int _imap_check_mailbox (CONTEXT* ctx, int* index_hint, int lock) { +static int _imap_check_mailbox (CONTEXT* ctx, + int* index_hint, + int lock __attribute__ ((unused))) { return (imap_check_mailbox (ctx, index_hint, 0)); }