diff options
author | bmeeks8 <bmeeks8@bellsouth.net> | 2013-06-04 20:12:14 -0400 |
---|---|---|
committer | bmeeks8 <bmeeks8@bellsouth.net> | 2013-06-04 20:12:14 -0400 |
commit | 8f4d4340ccd88e2fcb2e600c29fc4eabcd38d1e5 (patch) | |
tree | 922af64bd08150a52bfe099374a0fa510badd6ea /config | |
parent | e5cfcc4395c391d6e32c5491667752723ad2f4ba (diff) | |
download | pfsense-packages-8f4d4340ccd88e2fcb2e600c29fc4eabcd38d1e5.tar.gz pfsense-packages-8f4d4340ccd88e2fcb2e600c29fc4eabcd38d1e5.tar.bz2 pfsense-packages-8f4d4340ccd88e2fcb2e600c29fc4eabcd38d1e5.zip |
Remove some extraneous pass-by-reference tags to stop "copy on write"
Diffstat (limited to 'config')
-rwxr-xr-x | config/snort/snort.inc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/config/snort/snort.inc b/config/snort/snort.inc index 0f0a24e4..44dd133e 100755 --- a/config/snort/snort.inc +++ b/config/snort/snort.inc @@ -1288,7 +1288,7 @@ function snort_get_flowbits($rule) { return $flowbits; } -function snort_get_checked_flowbits(&$rules_map) { +function snort_get_checked_flowbits($rules_map) { /*************************************************************/ /* This function checks all the currently enabled rules to */ @@ -1331,7 +1331,7 @@ function snort_get_checked_flowbits(&$rules_map) { return $checked_flowbits; } -function snort_get_set_flowbits(&$rules_map) { +function snort_get_set_flowbits($rules_map) { /*********************************************************/ /* This function checks all the currently enabled rules */ @@ -1372,7 +1372,7 @@ function snort_get_set_flowbits(&$rules_map) { return $set_flowbits; } -function snort_find_flowbit_required_rules(&$all_rules, &$unchecked_flowbits) { +function snort_find_flowbit_required_rules($all_rules, $unchecked_flowbits) { /********************************************************/ /* This function finds all rules that must be enabled */ @@ -1420,7 +1420,7 @@ function snort_find_flowbit_required_rules(&$all_rules, &$unchecked_flowbits) { return $required_flowbits_rules; } -function snort_resolve_flowbits(&$active_rules) { +function snort_resolve_flowbits($active_rules) { /******************************************************/ /* This function auto-resolves flowbit requirements */ |