summaryrefslogtreecommitdiffstats
path: root/src/etc/inc/auth.inc
diff options
context:
space:
mode:
authork-paulius <k.dash.paulius@gmail.com>2016-02-10 22:53:22 -0600
committerk-paulius <k.dash.paulius@gmail.com>2016-02-10 22:53:22 -0600
commit7aaf60a87cf5d564a80b6c1d1992281662cafdda (patch)
treed878a9644cff5cfecb7033f0c06272718052ce49 /src/etc/inc/auth.inc
parent204146557e3fbbb9487ea21a6261e55955d2843a (diff)
downloadpfsense-7aaf60a87cf5d564a80b6c1d1992281662cafdda.zip
pfsense-7aaf60a87cf5d564a80b6c1d1992281662cafdda.tar.gz
Fix RADIUS spelling. It is written in all caps.
Diffstat (limited to 'src/etc/inc/auth.inc')
-rw-r--r--src/etc/inc/auth.inc8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/etc/inc/auth.inc b/src/etc/inc/auth.inc
index a5f0ff4..95c630b 100644
--- a/src/etc/inc/auth.inc
+++ b/src/etc/inc/auth.inc
@@ -1386,7 +1386,7 @@ function radius_backed($username, $passwd, $authcfg, &$attributes = array()) {
$retvalue['auth_val'] = 1;
$retvalue['error'] = $rauth->getError();
if ($debug) {
- printf(gettext("Radius start: %s<br />\n"), $retvalue['error']);
+ printf(gettext("RADIUS start: %s<br />\n"), $retvalue['error']);
}
}
@@ -1398,7 +1398,7 @@ function radius_backed($username, $passwd, $authcfg, &$attributes = array()) {
$retvalue['auth_val'] = 1;
$retvalue['error'] = $result->getMessage();
if ($debug) {
- printf(gettext("Radius send failed: %s<br />\n"), $retvalue['error']);
+ printf(gettext("RADIUS send failed: %s<br />\n"), $retvalue['error']);
}
} else if ($result === true) {
if ($rauth->getAttributes()) {
@@ -1406,13 +1406,13 @@ function radius_backed($username, $passwd, $authcfg, &$attributes = array()) {
}
$retvalue['auth_val'] = 2;
if ($debug) {
- printf(gettext("Radius Auth succeeded")."<br />\n");
+ printf(gettext("RADIUS Auth succeeded")."<br />\n");
}
$ret = true;
} else {
$retvalue['auth_val'] = 3;
if ($debug) {
- printf(gettext("Radius Auth rejected")."<br />\n");
+ printf(gettext("RADIUS Auth rejected")."<br />\n");
}
}
OpenPOWER on IntegriCloud