From: Amos Jeffries Date: Thu, 19 Feb 2009 02:19:34 +0000 (+1300) Subject: Parser should talk about auth_param not authparam X-Git-Tag: SQUID_3_0_STABLE14~24 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=907735afe47f9a7ec9de71225fc2523b7fad5a25;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 745b397cb3..00d9956233 100644 --- a/src/auth/basic/auth_basic.cc +++ b/src/auth/basic/auth_basic.cc @@ -334,7 +334,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 a25b2a34ac..bdb49070d3 100644 --- a/src/auth/digest/auth_digest.cc +++ b/src/auth/digest/auth_digest.cc @@ -933,7 +933,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 a9d2c79384..da6b2b84b4 100644 --- a/src/auth/negotiate/auth_negotiate.cc +++ b/src/auth/negotiate/auth_negotiate.cc @@ -147,7 +147,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 6e6d963bdf..165633578f 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) {