vauth: Removed the need for a separate GSS-API based SPN function

This commit is contained in:
Steve Holme 2016-04-03 20:26:03 +01:00
parent e655ae0c80
commit 9feb2676a4
8 changed files with 37 additions and 39 deletions

View file

@ -415,7 +415,7 @@ CURLcode Curl_auth_create_digest_md5_message(struct SessionHandle *data,
snprintf(&HA1_hex[2 * i], 3, "%02x", digest[i]);
/* Generate our SPN */
spn = Curl_auth_build_spn(service, realm);
spn = Curl_auth_build_spn(service, realm, NULL);
if(!spn)
return CURLE_OUT_OF_MEMORY;