diff options
author | Steve Holme <steve_holme@hotmail.com> | 2016-04-03 20:26:03 +0100 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2016-04-03 20:26:03 +0100 |
commit | 9feb2676a4e153eef7f5536f940678af2df2cf9e (patch) | |
tree | 762af4c526bc0b6ac77da2375e925a1653aacf59 /lib/vauth/spnego_sspi.c | |
parent | e655ae0c80aa3ddbacc20cac349336e4696d7d74 (diff) |
vauth: Removed the need for a separate GSS-API based SPN function
Diffstat (limited to 'lib/vauth/spnego_sspi.c')
-rw-r--r-- | lib/vauth/spnego_sspi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/vauth/spnego_sspi.c b/lib/vauth/spnego_sspi.c index 3dc5ccaeb..3530ef320 100644 --- a/lib/vauth/spnego_sspi.c +++ b/lib/vauth/spnego_sspi.c @@ -90,7 +90,7 @@ CURLcode Curl_auth_decode_spnego_message(struct SessionHandle *data, if(!nego->spn) { /* Generate our SPN */ - nego->spn = Curl_auth_build_spn(service, host); + nego->spn = Curl_auth_build_spn(service, host, NULL); if(!nego->spn) return CURLE_OUT_OF_MEMORY; } |