From e884cd19b02386efa8d5f66f3eba814d61a1b059 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 21 Mar 2023 23:16:51 -0400 Subject: [PATCH] spelling: authenticated Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- src/Security/ExAuth.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Security/ExAuth.php b/src/Security/ExAuth.php index af04e8013..a7cf21d32 100644 --- a/src/Security/ExAuth.php +++ b/src/Security/ExAuth.php @@ -306,7 +306,7 @@ class ExAuth $this->writeLog(LOG_WARNING, 'authentification failed for user ' . $sUser . '@' . $aCommand[2]); fwrite(STDOUT, pack('nn', 2, 0)); } else { - $this->writeLog(LOG_NOTICE, 'authentificated user ' . $sUser . '@' . $aCommand[2]); + $this->writeLog(LOG_NOTICE, 'authenticated user ' . $sUser . '@' . $aCommand[2]); fwrite(STDOUT, pack('nn', 2, 1)); } }