From efb9162e6978b414f8afe31f419142b174f96464 Mon Sep 17 00:00:00 2001 From: Ad Schellevis Date: Tue, 20 Feb 2024 16:09:20 +0100 Subject: [PATCH] Config: fix missing space in audit messages. closes https://github.com/opnsense/core/issues/7258 --- src/opnsense/mvc/app/library/OPNsense/Core/Config.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/opnsense/mvc/app/library/OPNsense/Core/Config.php b/src/opnsense/mvc/app/library/OPNsense/Core/Config.php index 723ab39f5..1f89fa1c9 100644 --- a/src/opnsense/mvc/app/library/OPNsense/Core/Config.php +++ b/src/opnsense/mvc/app/library/OPNsense/Core/Config.php @@ -551,7 +551,7 @@ class Config extends Singleton { openlog("audit", LOG_ODELAY, LOG_AUTH); syslog(LOG_NOTICE, sprintf( - "user %s%s changed configuration to %s in %s%s", + "user %s%s changed configuration to %s in %s %s", $revision['username'], !empty($revision['impersonated_by']) ? sprintf(" (%s)", $revision['impersonated_by']) : '', $backup_filename,