summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrendan Cully <brendan@kublai.com>2009-01-03 20:45:15 -0800
committerBrendan Cully <brendan@kublai.com>2009-01-03 20:45:15 -0800
commit40df3395240a24d1bc991802db1c699281d25bbb (patch)
tree41c367d9723bb95fe4af8cd1c0ce8b70e56aef48
parente4eb292cb9afb820122761d4c043e9db92ec010c (diff)
Guard against unused variable warning.
Thanks to Ingo Schwarze.
-rw-r--r--ChangeLog13
-rw-r--r--imap/auth_gss.c2
2 files changed, 14 insertions, 1 deletions
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 <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
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;