Correct evaluation for "Acct-Interim-Interval" from RADIUS

Setting "Acct-Interim-Interval :=600" in FreeRadius2 evaluates to 'random' values with PfSense 2.1.
Possibly a bug related to:
https://forum.pfsense.org/index.php?topic=60079.0
https://forum.pfsense.org/index.php?topic=60262.0
This commit is contained in:
dariomas 2014-09-19 11:43:48 +02:00 committed by Ermal
parent e5b3335ad9
commit beae652c15
1 changed files with 1 additions and 1 deletions

View File

@ -686,7 +686,7 @@ class Auth_RADIUS extends PEAR {
break;
case 85: /* Acct-Interim-Interval: RFC 2869 */
$this->attributes['interim_interval'] = radius_cvt_int($datav[1]);
$this->attributes['interim_interval'] = radius_cvt_int($data);
break;
}
}