From fa9f5ed982366d9d9b39352a757a2df6611f4618 Mon Sep 17 00:00:00 2001 From: Steve Holme Date: Thu, 16 Oct 2014 20:28:30 +0100 Subject: [PATCH] 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. --- lib/curl_ntlm_msgs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/curl_ntlm_msgs.c b/lib/curl_ntlm_msgs.c index 4ce17f13b..3d20e5917 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; }