From: Henrik Nordstrom Date: Sat, 6 Mar 2010 21:25:56 +0000 (+0100) Subject: Correct debug message when failing to parse digest attributes X-Git-Tag: SQUID_3_2_0_1~379 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=23a26549cf1e228282c8aaad5ab9d104acc0a234;p=thirdparty%2Fsquid.git Correct debug message when failing to parse digest attributes --- diff --git a/src/auth/digest/auth_digest.cc b/src/auth/digest/auth_digest.cc index 10c335fe7a..08c3b03ece 100644 --- a/src/auth/digest/auth_digest.cc +++ b/src/auth/digest/auth_digest.cc @@ -1137,14 +1137,14 @@ AuthDigestConfig::decode(char const *proxy_auth) if (vlen > 0) { if (*p == '"') { if (!httpHeaderParseQuotedString(p, &value)) { - debugs(29, 9, "authDigestDecodeAuth: Failed to parse attribute '" << temp << "' in '" << proxy_auth << "'"); + debugs(29, 9, "authDigestDecodeAuth: Failed to parse attribute '" << item << "' in '" << temp << "'"); continue; } } else { value.limitInit(p, vlen); } } else { - debugs(29, 9, "authDigestDecodeAuth: Failed to parse attribute '" << temp << "' in '" << proxy_auth << "'"); + debugs(29, 9, "authDigestDecodeAuth: Failed to parse attribute '" << item << "' in '" << temp << "'"); continue; }