reversed the check for GSSAPI when request that auth

This commit is contained in:
Daniel Stenberg 2003-07-22 11:15:46 +00:00
parent e76c960624
commit 981ffd9fce
1 changed files with 1 additions and 1 deletions

View File

@ -853,7 +853,7 @@ CURLcode Curl_setopt(struct SessionHandle *data, CURLoption option, ...)
#ifndef USE_SSLEAY #ifndef USE_SSLEAY
auth &= ~CURLAUTH_NTLM; /* no NTLM without SSL */ auth &= ~CURLAUTH_NTLM; /* no NTLM without SSL */
#endif #endif
#ifdef GSSAPI #ifndef GSSAPI
auth &= ~CURLAUTH_GSSNEGOTIATE; /* no GSS-Negotiate without GSSAPI */ auth &= ~CURLAUTH_GSSNEGOTIATE; /* no GSS-Negotiate without GSSAPI */
#endif #endif
if(!auth) if(!auth)