diff options
author | Nachtfalkeaw <nachtfalkeaw@web.de> | 2011-10-09 02:01:21 +0300 |
---|---|---|
committer | Nachtfalkeaw <nachtfalkeaw@web.de> | 2011-10-09 02:01:21 +0300 |
commit | 59cc7c4f9f86fca07386fd788ff6b575f0b854d9 (patch) | |
tree | 91714b1e8bfb69d858fc51cdc12c6d0cc51b4e64 | |
parent | cca16b59680414bf6ddfdfa0fe56d0eae0bf1e0f (diff) | |
download | pfsense-packages-59cc7c4f9f86fca07386fd788ff6b575f0b854d9.tar.gz pfsense-packages-59cc7c4f9f86fca07386fd788ff6b575f0b854d9.tar.bz2 pfsense-packages-59cc7c4f9f86fca07386fd788ff6b575f0b854d9.zip |
Changed syntax like it is decribed here: http://freeradius.org/radiusd/doc/Simultaneous-Use
Should fix this: http://forum.pfsense.org/index.php/topic,41819.msg215897.html#msg215897
-rw-r--r-- | config/freeradius.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/freeradius.inc b/config/freeradius.inc index 17b5408f..87c6af36 100644 --- a/config/freeradius.inc +++ b/config/freeradius.inc @@ -461,7 +461,7 @@ function freeradius_users_resync() { $atrib=''; $head="$username User-Password == ".'"'.$password.'"'; if ($multiconnect <> '') { - $head .=", Simultaneous-Use += $multiconnect"; + $head .=", Simultaneous-Use := $multiconnect"; } if ($userexpiration <> '') { $head .=", Expiration := ".'"'.$userexpiration.'"'; |