From 37a8ae40c7aafc43113cd672477b99f1fc1e75f0 Mon Sep 17 00:00:00 2001 From: Amos Jeffries Date: Sat, 7 May 2011 14:06:37 +1200 Subject: [PATCH] Fix typo in parenthesis of flags test --- src/acl/RegexData.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"); -- 2.47.3