--------------------- PatchSet 1046 Date: 2001/01/03 05:03:49 Author: rbcollins Branch: auth_rewrite Tag: (none) Log: removed ntlm checks Members: src/cache_cf.c:1.1.1.3.4.1.2.9.2.7->1.1.1.3.4.1.2.9.2.8 Index: squid/src/cache_cf.c =================================================================== RCS file: /cvsroot/squid-sf//squid/src/cache_cf.c,v retrieving revision 1.1.1.3.4.1.2.9.2.7 retrieving revision 1.1.1.3.4.1.2.9.2.8 diff -u -r1.1.1.3.4.1.2.9.2.7 -r1.1.1.3.4.1.2.9.2.8 --- squid/src/cache_cf.c 1 Jan 2001 12:05:09 -0000 1.1.1.3.4.1.2.9.2.7 +++ squid/src/cache_cf.c 3 Jan 2001 05:03:49 -0000 1.1.1.3.4.1.2.9.2.8 @@ -1,6 +1,6 @@ /* - * $Id: cache_cf.c,v 1.1.1.3.4.1.2.9.2.7 2001/01/01 12:05:09 rbcollins Exp $ + * $Id: cache_cf.c,v 1.1.1.3.4.1.2.9.2.8 2001/01/03 05:03:49 rbcollins Exp $ * * DEBUG: section 3 Configuration File Parsing * AUTHOR: Harvest Derived @@ -297,17 +297,6 @@ Config.redirectChildren = DefaultRedirectChildrenMax; } } - if (Config.Program.ntlmauthenticate) { - if (Config.ntlmauthenticateChildren < 1) { - Config.ntlmauthenticateChildren = 0; - wordlistDestroy(&Config.Program.ntlmauthenticate); - } else if (Config.ntlmauthenticateChildren > DefaultAuthenticateChildrenMax) { - debug(3, 0) ("WARNING: authenticate_children_ntlm was set to a bad value: %d\n", - Config.ntlmauthenticateChildren); - debug(3, 0) ("Setting it to the maximum (%d).\n", DefaultAuthenticateChildrenMax); - Config.ntlmauthenticateChildren = DefaultAuthenticateChildrenMax; - } - } #if 0 if (Config.Program.authenticate) { if (Config.authenticateChildren < 1) { @@ -376,8 +365,6 @@ #endif if (Config.Program.redirect) requirePathnameExists("redirect_program", Config.Program.redirect->key); - if (Config.Program.ntlmauthenticate) - requirePathnameExists("authenticate_program_ntlm", Config.Program.ntlmauthenticate->key); #if 0 if (Config.Program.authenticate) requirePathnameExists("authenticate_program", Config.Program.authenticate->key);