Moody patch fixing compilation warnings
authorJulien Danjou <julien@danjou.info>
Mon, 13 Nov 2006 15:37:43 +0000 (16:37 +0100)
committerPierre Habouzit <madcoder@debian.org>
Mon, 13 Nov 2006 17:03:02 +0000 (18:03 +0100)
Tag unused attribute

Signed-off-by: Julien Danjou <julien@danjou.info>
Signed-off-by: Pierre Habouzit <madcoder@debian.org>
pop/pop.c
pop/pop_auth.c

index 0bc06f5..5f8933e 100644 (file)
--- a/pop/pop.c
+++ b/pop/pop.c
@@ -431,7 +431,9 @@ int pop_fetch_message (MESSAGE * msg, CONTEXT * ctx, int msgno)
 }
 
 /* update POP mailbox - delete messages from server */
-pop_query_status pop_sync_mailbox (CONTEXT * ctx, int unused, int *index_hint)
+pop_query_status pop_sync_mailbox (CONTEXT * ctx,
+                                   int unused __attribute__ ((unused)),
+                                   int *index_hint __attribute__ ((unused)))
 {
   int i;
   pop_query_status ret;
@@ -474,7 +476,9 @@ pop_query_status pop_sync_mailbox (CONTEXT * ctx, int unused, int *index_hint)
 }
 
 /* Check for new messages and fetch headers */
-int pop_check_mailbox (CONTEXT * ctx, int *index_hint, int unused)
+int pop_check_mailbox (CONTEXT * ctx,
+                       int *index_hint __attribute__ ((unused)),
+                       int unused __attribute__ ((unused)))
 {
   int ret;
   POP_DATA *pop_data = (POP_DATA *) ctx->data;
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;