X-Git-Url: http://git.madism.org/?a=blobdiff_plain;f=imap%2Fmx_imap.c;h=2d9e3338d47ac99aa3bfa57b088a074aa695af90;hb=d63fe782146b7e2860d45fd6c2cf5369d9b0a87a;hp=a851537b0ecef645d23aa7d039128cc2abc2e9cb;hpb=7f7a0be369840b290248e5b0302beb447fa1b3cd;p=apps%2Fmadmutt.git diff --git a/imap/mx_imap.c b/imap/mx_imap.c index a851537..2d9e333 100644 --- a/imap/mx_imap.c +++ b/imap/mx_imap.c @@ -3,14 +3,8 @@ * It's licensed under the GNU General Public License, * please see the file GPL in the top level source directory. */ -#ifdef HAVE_CONFIG_H -#include "config.h" -#endif -#include - -#include -#include +#include #include "mutt.h" #include "imap_private.h" @@ -18,10 +12,7 @@ #include "mx.h" #include "mx_imap.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); @@ -34,7 +25,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]; @@ -49,7 +42,9 @@ static int imap_open_new_message (MESSAGE * msg, CONTEXT * dest, HEADER * hdr) /* 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)); }