From 23a26549cf1e228282c8aaad5ab9d104acc0a234 Mon Sep 17 00:00:00 2001 From: Henrik Nordstrom Date: Sat, 6 Mar 2010 22:25:56 +0100 Subject: [PATCH] Correct debug message when failing to parse digest attributes --- src/auth/digest/auth_digest.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; } -- 2.47.3