Fix a bunch of warnings in imap code
[apps/madmutt.git] / pop / mx_pop.c
index f30dbbd..c1f2048 100644 (file)
 #include "mx.h"
 #include "mx_pop.h"
 
-static int pop_is_magic (const char* path, struct stat* st) {
+static int pop_is_magic (const char* path, struct stat* st __attribute__ ((unused))) {
   url_scheme_t s = url_check_scheme (NONULL (path));
   return ((s == U_POP || s == U_POPS) ? M_POP : -1);
 }
 
-static int acl_check_pop (CONTEXT* ctx, int bit) {
+static int acl_check_pop (CONTEXT* ctx __attribute__ ((unused)), int bit) {
   switch (bit) {
     case ACL_INSERT:    /* editing messages */
     case ACL_WRITE:     /* change importance */