]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Fix typo in parenthesis of flags test
authorAmos Jeffries <squid3@treenet.co.nz>
Sat, 7 May 2011 02:06:37 +0000 (14:06 +1200)
committerAmos Jeffries <squid3@treenet.co.nz>
Sat, 7 May 2011 02:06:37 +0000 (14:06 +1200)
src/acl/RegexData.cc

index b9eb942cc3acdd1ad52405e4f56a28dbfb1b8056..85ae0e39fd3a6cd102fe6fd77db926ed677be2da 100644 (file)
@@ -108,7 +108,7 @@ ACLRegexData::dump()
 
     while (temp != NULL) {
         if (temp->flags != flags) {
-            if (temp->flags&REG_ICASE != 0) {
+            if ((temp->flags&REG_ICASE) != 0) {
                 wordlistAdd(&W, "-i");
             } else {
                 wordlistAdd(&W, "+i");