diff options
author | bmeeks8 <bmeeks8@bellsouth.net> | 2014-04-30 18:14:47 -0400 |
---|---|---|
committer | bmeeks8 <bmeeks8@bellsouth.net> | 2014-04-30 18:14:47 -0400 |
commit | ae28f7ce8af377985864b8df5e24b5c98e387e71 (patch) | |
tree | bd11197e8c5c8d67f93233d481f2ca43ad569695 | |
parent | 877135883f3da75c4fc065a50deb80aa3de04667 (diff) | |
download | pfsense-packages-ae28f7ce8af377985864b8df5e24b5c98e387e71.tar.gz pfsense-packages-ae28f7ce8af377985864b8df5e24b5c98e387e71.tar.bz2 pfsense-packages-ae28f7ce8af377985864b8df5e24b5c98e387e71.zip |
No need to call suricata_reload_config() here.
-rw-r--r-- | config/suricata/suricata_alerts.php | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/config/suricata/suricata_alerts.php b/config/suricata/suricata_alerts.php index 71739f82..66916e26 100644 --- a/config/suricata/suricata_alerts.php +++ b/config/suricata/suricata_alerts.php @@ -110,12 +110,11 @@ function suricata_add_supplist_entry($suppress) { } } - /* If we created a new list or updated an existing one, save the change, */ - /* tell Snort to load it, and return true; otherwise return false. */ + /* If we created a new list or updated an existing one, save the change */ + /* and return true; otherwise return false. */ if ($found_list) { write_config(); sync_suricata_package_config(); - suricata_reload_config($a_instance[$instanceid]); return true; } else |