From: Brendan Cully Date: Sun, 4 Jan 2009 04:45:15 +0000 (-0800) Subject: Guard against unused variable warning. X-Git-Tag: mutt-1-5-19-rel~22 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=40df3395240a24d1bc991802db1c699281d25bbb;p=mutt Guard against unused variable warning. Thanks to Ingo Schwarze. --- diff --git a/ChangeLog b/ChangeLog index b8e98f1d..4e20eebf 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,15 @@ -2009-01-03 12:04 -0800 Brendan Cully (a5981715a4ed) +2009-01-03 20:40 -0800 Brendan Cully (990da2bd329a) + + * doc/Makefile.am: Remove obsolete reference to ChangeLog.old. Thanks + to Ingo Schwarze. + + * imap/message.c: Ignore unexpected FETCH responses during + imap_read_headers. Thanks to Chris Li for the excellent bug report + in #3041. See #2902, #2935, #2985, #3028, #3041, #3143. With luck, + this may close them. In truth, imap_read_headers is still a horrible + kludge of duct tape and chicken wire. + + * hash.c, hash.h: Make hash_string work in unsigned domain * main.c: Another copyright update diff --git a/imap/auth_gss.c b/imap/auth_gss.c index da7c22b6..3403ac97 100644 --- a/imap/auth_gss.c +++ b/imap/auth_gss.c @@ -85,7 +85,9 @@ imap_auth_res_t imap_auth_gss (IMAP_DATA* idata, const char* method) gss_buffer_t sec_token; gss_name_t target_name; gss_ctx_id_t context; +#ifdef DEBUG gss_OID mech_name; +#endif gss_qop_t quality; int cflags; OM_uint32 maj_stat, min_stat;