From 50b87c4e689088fc3ddcf2fac163b75f839ef69a Mon Sep 17 00:00:00 2001 From: Joe Mason Date: Fri, 3 Aug 2012 12:37:52 -0400 Subject: [PATCH] Cleanup handshake after clean NTLM failure --- lib/curl_ntlm.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/lib/curl_ntlm.c b/lib/curl_ntlm.c index c7d67a0de..9c7837254 100644 --- a/lib/curl_ntlm.c +++ b/lib/curl_ntlm.c @@ -95,7 +95,13 @@ CURLcode Curl_input_ntlm(struct connectdata *conn, ntlm->state = NTLMSTATE_TYPE2; /* We got a type-2 message */ } else { - if(ntlm->state >= NTLMSTATE_TYPE1) { + if(ntlm->state == NTLMSTATE_TYPE3) { + infof(conn->data, "NTLM handshake rejected\n"); + Curl_http_ntlm_cleanup(conn); + ntlm->state = NTLMSTATE_NONE; + return CURLE_REMOTE_ACCESS_DENIED; + } + else if(ntlm->state >= NTLMSTATE_TYPE1) { infof(conn->data, "NTLM handshake failure (internal error)\n"); return CURLE_REMOTE_ACCESS_DENIED; }