From fdda1d22530f2baf34ce72f96f14818c2f249014 Mon Sep 17 00:00:00 2001 From: Scott Ullrich Date: Tue, 7 Oct 2008 00:29:37 +0000 Subject: [PATCH] Do not lock the filter when setting filter reload status. --- etc/inc/pfsense-utils.inc | 2 -- 1 file changed, 2 deletions(-) diff --git a/etc/inc/pfsense-utils.inc b/etc/inc/pfsense-utils.inc index 954adb6731..91b604d1df 100644 --- a/etc/inc/pfsense-utils.inc +++ b/etc/inc/pfsense-utils.inc @@ -3314,11 +3314,9 @@ function kill_traffic_collector() { function update_filter_reload_status($text) { global $g; - config_lock(); $fd = fopen("{$g['varrun_path']}/filter_reload_status", "w"); fwrite($fd, $text); fclose($fd); - config_unlock(); } function get_interface_gateway($interface) {