Skip to content

Commit

Permalink
filter: fix floating rules default for quick parameter, fixes #1745
Browse files Browse the repository at this point in the history
  • Loading branch information
fraenki authored and fichtner committed Jul 31, 2017
1 parent da66245 commit f25d8b7
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -337,7 +337,7 @@ private function fetchActualRules()
}
if (!isset($tmp['quick'])) {
// all rules are quick by default except floating
$tmp['quick'] = !isset($rule['floating']) ? true : false;
$tmp['quick'] = !isset($tmp['floating']) ? true : false;
}
// restructure flags
if (isset($tmp['protocol']) && $tmp['protocol'] == "tcp") {
Expand Down

0 comments on commit f25d8b7

Please sign in to comment.