aboutsummaryrefslogtreecommitdiff
path: root/lib/url.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2003-07-22 11:15:46 +0000
committerDaniel Stenberg <daniel@haxx.se>2003-07-22 11:15:46 +0000
commit981ffd9fce0f41843a6f8abc0bbc35978ec95f4c (patch)
treed766ac9efdc98aa74742a86515c7d75311275e16 /lib/url.c
parente76c960624e9bb2a0f596f949c995113ded61cf2 (diff)
reversed the check for GSSAPI when request that auth
Diffstat (limited to 'lib/url.c')
-rw-r--r--lib/url.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/url.c b/lib/url.c
index 427e072e3..13f944d1d 100644
--- a/lib/url.c
+++ b/lib/url.c
@@ -853,7 +853,7 @@ CURLcode Curl_setopt(struct SessionHandle *data, CURLoption option, ...)
#ifndef USE_SSLEAY
auth &= ~CURLAUTH_NTLM; /* no NTLM without SSL */
#endif
-#ifdef GSSAPI
+#ifndef GSSAPI
auth &= ~CURLAUTH_GSSNEGOTIATE; /* no GSS-Negotiate without GSSAPI */
#endif
if(!auth)