From: Amos Jeffries Date: Sat, 7 May 2011 02:06:37 +0000 (+1200) Subject: Fix typo in parenthesis of flags test X-Git-Tag: take07~16^2~30 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=37a8ae40c7aafc43113cd672477b99f1fc1e75f0;p=thirdparty%2Fsquid.git Fix typo in parenthesis of flags test --- diff --git a/src/acl/RegexData.cc b/src/acl/RegexData.cc index b9eb942cc3..85ae0e39fd 100644 --- a/src/acl/RegexData.cc +++ b/src/acl/RegexData.cc @@ -108,7 +108,7 @@ ACLRegexData::dump() while (temp != NULL) { if (temp->flags != flags) { - if (temp->flags®_ICASE != 0) { + if ((temp->flags®_ICASE) != 0) { wordlistAdd(&W, "-i"); } else { wordlistAdd(&W, "+i");