]> git.ipfire.org Git - thirdparty/squid.git/blobdiff - src/Notes.cc
Major ACL handling update, including the following changes:
[thirdparty/squid.git] / src / Notes.cc
index 131cf255ac1b9552f938305cca5061a9fafe1e15..7cddf8b5207f4c5ed37ccf4fa0bba0096e9ef59b 100644 (file)
@@ -96,7 +96,11 @@ Notes::parse(ConfigParser &parser)
     ConfigParser::ParseQuotedString(&value);
     Note::Pointer note = add(key);
     Note::Value::Pointer noteValue = note->addValue(value);
-    aclParseAclList(parser, &noteValue->aclList);
+
+    String label(key);
+    label.append('=');
+    label.append(value);
+    aclParseAclList(parser, &noteValue->aclList, label.termedBuf());
 
     if (blacklisted) {
         for (int i = 0; blacklisted[i] != NULL; ++i) {