]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Correct debug message when failing to parse digest attributes
authorHenrik Nordstrom <henrik@henriknordstrom.net>
Sat, 6 Mar 2010 21:25:56 +0000 (22:25 +0100)
committerHenrik Nordstrom <henrik@henriknordstrom.net>
Sat, 6 Mar 2010 21:25:56 +0000 (22:25 +0100)
src/auth/digest/auth_digest.cc

index 10c335fe7a2890576313f93ed2d247b31f09b0f9..08c3b03ece1c1150d20c331cd4cdf774e9412336 100644 (file)
@@ -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;
         }