diff options
author | Steve Holme <steve_holme@hotmail.com> | 2014-10-16 20:28:30 +0100 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2014-10-16 20:30:08 +0100 |
commit | fa9f5ed982366d9d9b39352a757a2df6611f4618 (patch) | |
tree | b6710352af1478e10408361ccb6aea841abe8683 /lib | |
parent | 72147c62f7fa8893052ece2ebe83dd91035d24a2 (diff) |
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.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/curl_ntlm_msgs.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |