]> granicus.if.org Git - mutt/commitdiff
Guard against unused variable warning.
authorBrendan Cully <brendan@kublai.com>
Sun, 4 Jan 2009 04:45:15 +0000 (20:45 -0800)
committerBrendan Cully <brendan@kublai.com>
Sun, 4 Jan 2009 04:45:15 +0000 (20:45 -0800)
Thanks to Ingo Schwarze.

ChangeLog
imap/auth_gss.c

index b8e98f1dd4e73770b195cd9babd5490d08af0647..4e20eebf6ee84a3f4f88f76229eba995771a55d5 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,15 @@
-2009-01-03 12:04 -0800  Brendan Cully  <brendan@kublai.com>  (a5981715a4ed)
+2009-01-03 20:40 -0800  Brendan Cully  <brendan@kublai.com>  (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
 
index da7c22b6892514c12f6cc4aba82485124cd116f9..3403ac975ebe68eb9969e76040c95f647fd294a8 100644 (file)
@@ -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;