ntlm: Fixed empty type-2 decoded message info text

Updated the info text when the base-64 decode of the type-2 message
returns a null buffer to be more specific.
This commit is contained in:
Steve Holme 2014-10-16 20:28:30 +01:00
parent 72147c62f7
commit fa9f5ed982
1 changed files with 1 additions and 1 deletions

View File

@ -292,7 +292,7 @@ CURLcode Curl_ntlm_decode_type2_message(struct SessionHandle *data,
return error;
if(!buffer) {
infof(data, "NTLM handshake failure (unhandled condition)\n");
infof(data, "NTLM handshake failure (empty type-2 message)\n");
return CURLE_BAD_CONTENT_ENCODING;
}