diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | daemon/ntlm.c | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +0.5.2 + - Better messages when keepalives are not used with NTLM + - Fix problems in java servlet authenticator [Ross Elliot] + 0.5.1 - Fix problem with NTLM connection caching - Fix problem with NTLM not authenticating POST in IE properly diff --git a/daemon/ntlm.c b/daemon/ntlm.c index 2cd20db..2c73b0a 100644 --- a/daemon/ntlm.c +++ b/daemon/ntlm.c @@ -459,7 +459,7 @@ int ntlm_auth_ntlm(ha_request_t* rq, ntlm_context_t* ctx, void* key, */ if(!conn || !conn->handle) { - ha_messagex(rq, LOG_WARNING, "received out of order NTLM response from client"); + ha_messagex(rq, LOG_WARNING, "received out of order NTLM response from client. Make sure 'keep alives' are on."); rq->resp_code = HA_SERVER_BADREQ; RETURN(HA_FALSE); } |