From: Amos Jeffries Date: Wed, 11 Feb 2009 11:10:32 +0000 (+1300) Subject: Parser should talk about auth_param not authparam X-Git-Tag: SQUID_3_2_0_1~1199 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=42900318220dae9a941e25b434788cc04f53b9e3;p=thirdparty%2Fsquid.git Parser should talk about auth_param not authparam --- diff --git a/src/auth/basic/auth_basic.cc b/src/auth/basic/auth_basic.cc index d19b72f2c8..b40b02ee1a 100644 --- a/src/auth/basic/auth_basic.cc +++ b/src/auth/basic/auth_basic.cc @@ -331,7 +331,7 @@ AuthBasicConfig::parse(AuthConfig * scheme, int n_configured, char *param_str) parse_wordlist(&authenticate); - requirePathnameExists("authparam basic program", authenticate->key); + requirePathnameExists("auth_param basic program", authenticate->key); } else if (strcasecmp(param_str, "children") == 0) { parse_int(&authenticateChildren); } else if (strcasecmp(param_str, "concurrency") == 0) { diff --git a/src/auth/digest/auth_digest.cc b/src/auth/digest/auth_digest.cc index bc819b05d9..af8a3bde85 100644 --- a/src/auth/digest/auth_digest.cc +++ b/src/auth/digest/auth_digest.cc @@ -932,7 +932,7 @@ AuthDigestConfig::parse(AuthConfig * scheme, int n_configured, char *param_str) parse_wordlist(&authenticate); - requirePathnameExists("authparam digest program", authenticate->key); + requirePathnameExists("auth_param digest program", authenticate->key); } else if (strcasecmp(param_str, "children") == 0) { parse_int(&authenticateChildren); } else if (strcasecmp(param_str, "realm") == 0) { diff --git a/src/auth/negotiate/auth_negotiate.cc b/src/auth/negotiate/auth_negotiate.cc index c2b3b7ef59..92e84ac189 100644 --- a/src/auth/negotiate/auth_negotiate.cc +++ b/src/auth/negotiate/auth_negotiate.cc @@ -159,7 +159,7 @@ AuthNegotiateConfig::parse(AuthConfig * scheme, int n_configured, char *param_st parse_wordlist(&authenticate); - requirePathnameExists("authparam negotiate program", authenticate->key); + requirePathnameExists("auth_param negotiate program", authenticate->key); } else if (strcasecmp(param_str, "children") == 0) { parse_int(&authenticateChildren); } else if (strcasecmp(param_str, "keep_alive") == 0) { diff --git a/src/auth/ntlm/auth_ntlm.cc b/src/auth/ntlm/auth_ntlm.cc index 6b0caeb363..7d33066a63 100644 --- a/src/auth/ntlm/auth_ntlm.cc +++ b/src/auth/ntlm/auth_ntlm.cc @@ -141,7 +141,7 @@ AuthNTLMConfig::parse(AuthConfig * scheme, int n_configured, char *param_str) parse_wordlist(&authenticate); - requirePathnameExists("authparam ntlm program", authenticate->key); + requirePathnameExists("auth_param ntlm program", authenticate->key); } else if (strcasecmp(param_str, "children") == 0) { parse_int(&authenticateChildren); } else if (strcasecmp(param_str, "keep_alive") == 0) {