diff options
author | Ermal <eri@pfsense.org> | 2010-03-12 16:23:14 +0000 |
---|---|---|
committer | Ermal <eri@pfsense.org> | 2010-03-12 16:23:14 +0000 |
commit | 6e81509680689a68af951d8cee31c0b660b0e6b7 (patch) | |
tree | 98b5cea49233ba94a969d126575d9d066c6e0968 /etc/inc | |
parent | aa530bf4c01d7ec89d9db8518199f880a509574e (diff) | |
download | pfsense-6e81509680689a68af951d8cee31c0b660b0e6b7.zip pfsense-6e81509680689a68af951d8cee31c0b660b0e6b7.tar.gz |
Add includes needed. Fix typo.
Diffstat (limited to 'etc/inc')
-rw-r--r-- | etc/inc/auth.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/inc/auth.inc b/etc/inc/auth.inc index 9ca24b5..fcb90cf 100644 --- a/etc/inc/auth.inc +++ b/etc/inc/auth.inc @@ -932,7 +932,7 @@ function radius_backed($username, $passwd, $authcfg){ foreach ($radiusservers as $radsrv) $rauth->addServer($radsrv['ipaddr'], $radsrv['port'], $radsrv['sharedsecret']); - if (PEAR::iserError($rauth->start())) { + if (PEAR::isError($rauth->start())) { $retvalue['auth_val'] = 1; $retvalue['error'] = $rauth->getError(); if ($debug) |