From cdccb422671aebd198ed338ac6111cfde303f1cc Mon Sep 17 00:00:00 2001 From: Steve Holme Date: Wed, 30 Oct 2013 21:33:28 +0000 Subject: http: Added authentication message header value extraction ...following recent changes to Curl_base64_decode() rather than trying to parse a header line for the authentication mechanisms which is CRLF terminated and inline zero terminate it. --- lib/curl_ntlm.c | 4 ---- 1 file changed, 4 deletions(-) (limited to 'lib/curl_ntlm.c') diff --git a/lib/curl_ntlm.c b/lib/curl_ntlm.c index 4d126a573..389ff66c8 100644 --- a/lib/curl_ntlm.c +++ b/lib/curl_ntlm.c @@ -77,10 +77,6 @@ CURLcode Curl_input_ntlm(struct connectdata *conn, ntlm = proxy ? &conn->proxyntlm : &conn->ntlm; - /* skip initial whitespaces */ - while(*header && ISSPACE(*header)) - header++; - if(checkprefix("NTLM", header)) { header += strlen("NTLM"); -- cgit v1.2.3