From eb8c05dae16fb0bbc2a4f583092e557d59a28ddb Mon Sep 17 00:00:00 2001 From: Ad Schellevis Date: Wed, 21 Oct 2015 11:55:24 +0200 Subject: [PATCH] typo in comment --- src/opnsense/mvc/app/library/OPNsense/Auth/Local.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/opnsense/mvc/app/library/OPNsense/Auth/Local.php b/src/opnsense/mvc/app/library/OPNsense/Auth/Local.php index 68ea95d40..c60c5032d 100644 --- a/src/opnsense/mvc/app/library/OPNsense/Auth/Local.php +++ b/src/opnsense/mvc/app/library/OPNsense/Auth/Local.php @@ -77,7 +77,7 @@ class Local implements IAuthConnector } $passwd = crypt($password, (string)$userObject->password); if ($passwd == (string)$userObject->password) { - // password ok, return successfully authen + // password ok, return successfully authentication return true; } }