From bd037cc6555b5953241760553cb72e6d6147d3da Mon Sep 17 00:00:00 2001 From: Ad Schellevis Date: Mon, 23 Sep 2024 10:55:58 +0200 Subject: [PATCH] logging: remove closelog() from auth_log(), in some cases this seems to silence successive lines from the feed for some reason and closelog() doesn't seem needed anyway --- src/etc/inc/auth.inc | 1 - 1 file changed, 1 deletion(-) diff --git a/src/etc/inc/auth.inc b/src/etc/inc/auth.inc index e98339530..7f69d2e73 100644 --- a/src/etc/inc/auth.inc +++ b/src/etc/inc/auth.inc @@ -38,7 +38,6 @@ function auth_log($message, $prio = LOG_ERR) { openlog('audit', LOG_ODELAY, LOG_AUTH); log_msg($message, $prio); - closelog(); reopenlog(); }