]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
reformatting comments to fit within 80 chars
authorwessels <>
Wed, 28 Aug 2002 10:33:51 +0000 (10:33 +0000)
committerwessels <>
Wed, 28 Aug 2002 10:33:51 +0000 (10:33 +0000)
src/auth/ntlm/auth_ntlm.cc

index 4d7cb4545c38a31a68cfa6ad0006d9ab67040fda..92bd733898acc211a7b94db12e5f177eb72a9c82 100644 (file)
@@ -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;