Loading lib/vauth/digest.c +1 −1 Original line number Diff line number Diff line Loading @@ -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; Loading lib/vauth/digest_sspi.c +1 −1 Original line number Diff line number Diff line Loading @@ -125,7 +125,7 @@ CURLcode Curl_auth_create_digest_md5_message(struct SessionHandle *data, } /* Generate our SPN */ spn = Curl_auth_build_spn(service, data->easy_conn->host.name); spn = Curl_auth_build_spn(service, data->easy_conn->host.name, NULL); if(!spn) { free(output_token); free(input_token); Loading lib/vauth/krb5_gssapi.c +1 −1 Original line number Diff line number Diff line Loading @@ -90,7 +90,7 @@ CURLcode Curl_auth_create_gssapi_user_message(struct SessionHandle *data, if(!krb5->spn) { /* Generate our SPN */ char *spn = Curl_auth_build_gssapi_spn(service, host); char *spn = Curl_auth_build_spn(service, NULL, host); if(!spn) return CURLE_OUT_OF_MEMORY; Loading lib/vauth/krb5_sspi.c +1 −1 Original line number Diff line number Diff line Loading @@ -87,7 +87,7 @@ CURLcode Curl_auth_create_gssapi_user_message(struct SessionHandle *data, if(!krb5->spn) { /* Generate our SPN */ krb5->spn = Curl_auth_build_spn(service, host); krb5->spn = Curl_auth_build_spn(service, host, NULL); if(!krb5->spn) return CURLE_OUT_OF_MEMORY; } Loading lib/vauth/spnego_gssapi.c +1 −1 Original line number Diff line number Diff line Loading @@ -89,7 +89,7 @@ CURLcode Curl_auth_decode_spnego_message(struct SessionHandle *data, if(!nego->spn) { /* Generate our SPN */ char *spn = Curl_auth_build_gssapi_spn(service, host); char *spn = Curl_auth_build_spn(service, NULL, host); if(!spn) return CURLE_OUT_OF_MEMORY; Loading Loading
lib/vauth/digest.c +1 −1 Original line number Diff line number Diff line Loading @@ -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; Loading
lib/vauth/digest_sspi.c +1 −1 Original line number Diff line number Diff line Loading @@ -125,7 +125,7 @@ CURLcode Curl_auth_create_digest_md5_message(struct SessionHandle *data, } /* Generate our SPN */ spn = Curl_auth_build_spn(service, data->easy_conn->host.name); spn = Curl_auth_build_spn(service, data->easy_conn->host.name, NULL); if(!spn) { free(output_token); free(input_token); Loading
lib/vauth/krb5_gssapi.c +1 −1 Original line number Diff line number Diff line Loading @@ -90,7 +90,7 @@ CURLcode Curl_auth_create_gssapi_user_message(struct SessionHandle *data, if(!krb5->spn) { /* Generate our SPN */ char *spn = Curl_auth_build_gssapi_spn(service, host); char *spn = Curl_auth_build_spn(service, NULL, host); if(!spn) return CURLE_OUT_OF_MEMORY; Loading
lib/vauth/krb5_sspi.c +1 −1 Original line number Diff line number Diff line Loading @@ -87,7 +87,7 @@ CURLcode Curl_auth_create_gssapi_user_message(struct SessionHandle *data, if(!krb5->spn) { /* Generate our SPN */ krb5->spn = Curl_auth_build_spn(service, host); krb5->spn = Curl_auth_build_spn(service, host, NULL); if(!krb5->spn) return CURLE_OUT_OF_MEMORY; } Loading
lib/vauth/spnego_gssapi.c +1 −1 Original line number Diff line number Diff line Loading @@ -89,7 +89,7 @@ CURLcode Curl_auth_decode_spnego_message(struct SessionHandle *data, if(!nego->spn) { /* Generate our SPN */ char *spn = Curl_auth_build_gssapi_spn(service, host); char *spn = Curl_auth_build_spn(service, NULL, host); if(!spn) return CURLE_OUT_OF_MEMORY; Loading