From: Daniel Stenberg Date: Wed, 12 Feb 2025 13:50:59 +0000 (+0100) Subject: http: fix NTLM info message typo X-Git-Tag: curl-8_13_0~489 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=48f6bfa8c7738c9eb5cb13cc8086c43c3e61dc72;p=thirdparty%2Fcurl.git http: fix NTLM info message typo Closes #16305 --- diff --git a/lib/http.c b/lib/http.c index 5bd2bd4166..9e15afe46a 100644 --- a/lib/http.c +++ b/lib/http.c @@ -458,7 +458,7 @@ static CURLcode http_perhapsrewind(struct Curl_easy *data, #if defined(USE_NTLM) if((data->state.authproxy.picked == CURLAUTH_NTLM) || (data->state.authhost.picked == CURLAUTH_NTLM)) { - ongoing_auth = "NTML"; + ongoing_auth = "NTLM"; if((conn->http_ntlm_state != NTLMSTATE_NONE) || (conn->proxy_ntlm_state != NTLMSTATE_NONE)) { /* The NTLM-negotiation has started, keep on sending.