From: Daniel Stenberg Date: Tue, 22 Jul 2003 11:15:46 +0000 (+0000) Subject: reversed the check for GSSAPI when request that auth X-Git-Tag: upstream/7.37.1~14438 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=981ffd9fce0f41843a6f8abc0bbc35978ec95f4c;p=platform%2Fupstream%2Fcurl.git reversed the check for GSSAPI when request that auth --- diff --git a/lib/url.c b/lib/url.c index 427e072..13f944d 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)