diff options
author | Steve Holme <steve_holme@hotmail.com> | 2016-07-22 20:42:20 +0100 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2016-07-23 21:29:16 +0100 |
commit | 3fc845914ad050fcb78ddb8ab947ddbe3928de2a (patch) | |
tree | 5663d7031971fe999a0972f9caaeefece7b6eba8 /lib/vauth/vauth.h | |
parent | 25bf71ab0757694e691ad77c48fa6c438df9416e (diff) | |
download | curl-3fc845914ad050fcb78ddb8ab947ddbe3928de2a.tar.gz |
vauth.h: No need to query HAVE_GSSAPI || USE_WINDOWS_SSPI for SPNEGO
As SPNEGO is only defined when these pre-processor variables are defined
there is no need to query them explicitly.
Diffstat (limited to 'lib/vauth/vauth.h')
-rw-r--r-- | lib/vauth/vauth.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/vauth/vauth.h b/lib/vauth/vauth.h index 0c3cc18cb..38806ee73 100644 --- a/lib/vauth/vauth.h +++ b/lib/vauth/vauth.h @@ -164,7 +164,7 @@ CURLcode Curl_auth_create_gssapi_security_message(struct Curl_easy *data, void Curl_auth_gssapi_cleanup(struct kerberos5data *krb5); #endif /* USE_KERBEROS5 */ -#if (defined(HAVE_GSSAPI) || defined(USE_WINDOWS_SSPI)) && defined(USE_SPNEGO) +#if defined(USE_SPNEGO) /* This is used to decode a base64 encoded SPNEGO (Negotiate) challenge message */ CURLcode Curl_auth_decode_spnego_message(struct Curl_easy *data, @@ -184,6 +184,6 @@ CURLcode Curl_auth_create_spnego_message(struct Curl_easy *data, /* This is used to clean up the SPNEGO specifiec data */ void Curl_auth_spnego_cleanup(struct negotiatedata *nego); -#endif /* (HAVE_GSSAPI || USE_WINDOWS_SSPI) && USE_SPNEGO */ +#endif /* USE_SPNEGO */ #endif /* HEADER_CURL_VAUTH_H */ |