From: wessels <> Date: Wed, 28 Aug 2002 10:33:51 +0000 (+0000) Subject: reformatting comments to fit within 80 chars X-Git-Tag: SQUID_3_0_PRE1~816 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dff99376cbba533fb2e2208280431ffcaed26bf2;p=thirdparty%2Fsquid.git reformatting comments to fit within 80 chars --- diff --git a/src/auth/ntlm/auth_ntlm.cc b/src/auth/ntlm/auth_ntlm.cc index 4d7cb4545c..92bd733898 100644 --- a/src/auth/ntlm/auth_ntlm.cc +++ b/src/auth/ntlm/auth_ntlm.cc @@ -1,6 +1,6 @@ /* - * $Id: auth_ntlm.cc,v 1.21 2002/04/13 23:07:54 hno Exp $ + * $Id: auth_ntlm.cc,v 1.22 2002/08/28 04:33:51 wessels Exp $ * * DEBUG: section 29 NTLM Authenticator * AUTHOR: Robert Collins @@ -180,13 +180,13 @@ authNTLMParse(authScheme * scheme, int n_configured, char *param_str) } else { debug(28, 0) ("unrecognised ntlm auth scheme parameter '%s'\n", param_str); } - /* disable client side request pipelining. There is a race with NTLM when the client - * sends a second request on an NTLM connection before the authenticate challenge is - * sent. - * With this patch, the client may fail to authenticate, but squid's state will be - * preserved. - * Caveats: this should be a post-parse test, but that can wait for the modular - * parser to be integrated. + /* + * disable client side request pipelining. There is a race with + * NTLM when the client sends a second request on an NTLM + * connection before the authenticate challenge is sent. With + * this patch, the client may fail to authenticate, but squid's + * state will be preserved. Caveats: this should be a post-parse + * test, but that can wait for the modular parser to be integrated. */ if (ntlmConfig->authenticate) Config.onoff.pipeline_prefetch = 0;