Moody patch fixing compilation warnings
[apps/madmutt.git] / pop / pop_auth.c
index 878c20f..eb575bf 100644 (file)
@@ -171,7 +171,8 @@ void pop_apop_timestamp (POP_DATA * pop_data, char *buf)
 }
 
 /* APOP authenticator */
-static pop_auth_res_t pop_auth_apop (POP_DATA * pop_data, const char *method)
+static pop_auth_res_t pop_auth_apop (POP_DATA * pop_data,
+                                     const char *method __attribute__ ((unused)))
 {
   MD5_CTX mdContext;
   unsigned char digest[16];
@@ -217,7 +218,8 @@ static pop_auth_res_t pop_auth_apop (POP_DATA * pop_data, const char *method)
 }
 
 /* USER authenticator */
-static pop_auth_res_t pop_auth_user (POP_DATA * pop_data, const char *method)
+static pop_auth_res_t pop_auth_user (POP_DATA * pop_data,
+                                     const char *method __attribute__ ((unused)))
 {
   char buf[LONG_STRING];
   pop_query_status ret;