From: Alan T. DeKok Date: Sun, 20 Nov 2011 16:37:19 +0000 (+0100) Subject: Correct references X-Git-Tag: release_3_0_0_beta0~492 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3c52dbcf1fab5d77888dd9d0c4b249b549b02273;p=thirdparty%2Ffreeradius-server.git Correct references ../foo instead of foo --- diff --git a/raddb/modules/rediswho b/raddb/modules/rediswho index 8963af049e3..8b55c6e9246 100644 --- a/raddb/modules/rediswho +++ b/raddb/modules/rediswho @@ -28,19 +28,19 @@ rediswho { # Start { insert = "LPUSH %{User-Name} %l,%{Acct-Session-Id},%{NAS-IP-Address},%{Acct-Session-Time},%{Framed-IP-Address},%{Acct-Input-Gigawords:-0},%{Acct-Output-Gigawords:-0},%{Acct-Input-Octets:-0},%{Acct-Output-Octets:-0}" - trim = "LTRIM %{User-Name} 0 ${trim-count}" - expire = "EXPIRE %{User-Name} ${expire-time}" + trim = "LTRIM %{User-Name} 0 ${..trim-count}" + expire = "EXPIRE %{User-Name} ${..expire-time}" } Interim-Update { insert = "LPUSH %{User-Name} %l,%{Acct-Session-Id},%{NAS-IP-Address},%{Acct-Session-Time},%{Framed-IP-Address},%{Acct-Input-Gigawords:-0},%{Acct-Output-Gigawords:-0},%{Acct-Input-Octets:-0},%{Acct-Output-Octets:-0}" - trim = "LTRIM %{User-Name} 0 ${trim-count}" - expire = "EXPIRE %{User-Name} ${expire-time}" + trim = "LTRIM %{User-Name} 0 ${..trim-count}" + expire = "EXPIRE %{User-Name} ${..expire-time}" } Stop { insert = "LPUSH %{User-Name} %l,%{Acct-Session-Id},%{NAS-IP-Address},%{Acct-Session-Time},%{Framed-IP-Address},%{Acct-Input-Gigawords:-0},%{Acct-Output-Gigawords:-0},%{Acct-Input-Octets:-0},%{Acct-Output-Octets:-0}" - trim = "LTRIM %{User-Name} 0 ${trim-count}" - expire = "EXPIRE %{User-Name} ${expire-time}" + trim = "LTRIM %{User-Name} 0 ${..trim-count}" + expire = "EXPIRE %{User-Name} ${..expire-time}" } }