]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Fix port error in v4 rev.15058
authorChristos Tsantilas <chtsanti@users.sourceforge.net>
Fri, 23 Jun 2017 21:29:13 +0000 (09:29 +1200)
committerAmos Jeffries <squid3@treenet.co.nz>
Fri, 23 Jun 2017 21:29:13 +0000 (09:29 +1200)
src/acl/Note.cc

index 1475742de3a46f882efa2a9d83c7f81c76c1d0bf..5ccf152feb987e27381daf62d1ff8b3c35b04973 100644 (file)
@@ -49,7 +49,7 @@ bool
 ACLNoteStrategy::matchNotes(ACLData<MatchType> *noteData, const NotePairs *note) const
 {
     for (auto &entry: note->entries) {
-        if (&delimiters.value) {
+        if (!delimiters.value.isEmpty()) {
             NotePairs::Entry e(entry->name.termedBuf(), "");
             Parser::Tokenizer t(StringToSBuf(entry->value));
             SBuf s;