From bd466aee5cba77c2e0cfba0ec141320d9416f801 Mon Sep 17 00:00:00 2001 From: bmeeks8 Date: Thu, 18 Sep 2014 21:32:24 -0400 Subject: More replace PHP @unlink() with system unlink_if_exists(). --- config/snort/snort_alerts.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'config/snort/snort_alerts.php') diff --git a/config/snort/snort_alerts.php b/config/snort/snort_alerts.php index 54988395..2396b71e 100755 --- a/config/snort/snort_alerts.php +++ b/config/snort/snort_alerts.php @@ -401,7 +401,7 @@ if ($_POST['download']) { readfile("/tmp/{$file_name}"); // Clean up the temp file - @unlink("/tmp/{$file_name}"); + unlink_if_exists("/tmp/{$file_name}"); } else $savemsg = gettext("An error occurred while creating archive"); @@ -748,7 +748,7 @@ if (file_exists("{$snortlogdir}/snort_{$if_real}{$snort_uuid}/alert")) { $counter++; } fclose($fd); - @unlink("/tmp/alert_{$snort_uuid}"); + unlink_if_exists("/tmp/alert_{$snort_uuid}"); } } ?> -- cgit v1.2.3