From: Steve Holme Date: Thu, 16 Oct 2014 19:28:30 +0000 (+0100) Subject: ntlm: Fixed empty type-2 decoded message info text X-Git-Tag: curl-7_39_0~130 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fa9f5ed982366d9d9b39352a757a2df6611f4618;p=thirdparty%2Fcurl.git 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. --- diff --git a/lib/curl_ntlm_msgs.c b/lib/curl_ntlm_msgs.c index 4ce17f13b9..3d20e59173 100644 --- a/lib/curl_ntlm_msgs.c +++ b/lib/curl_ntlm_msgs.c @@ -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; }