summaryrefslogtreecommitdiffstats
path: root/imap
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 /imap
parente4eb292cb9afb820122761d4c043e9db92ec010c (diff)
Guard against unused variable warning.
Thanks to Ingo Schwarze.
Diffstat (limited to 'imap')
-rw-r--r--imap/auth_gss.c2
1 files changed, 2 insertions, 0 deletions
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;