From c798e4308d33a37929b5f35a0c762657debd2042 Mon Sep 17 00:00:00 2001 From: Brian Candler Date: Fri, 15 Feb 2013 09:30:48 +0000 Subject: [PATCH] rlm_rediswho: fix unlang conditional expansion --- raddb/modules/rediswho | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/raddb/modules/rediswho b/raddb/modules/rediswho index 470dbadcad..e16550c999 100644 --- a/raddb/modules/rediswho +++ b/raddb/modules/rediswho @@ -14,15 +14,15 @@ rediswho { # an update in this time will be automatically expired. expire-time = 86400 - 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}" + 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}" start-trim = "LTRIM %{User-Name} 0 ${trim-count}" start-expire = "EXPIRE %{User-Name} ${expire-time}" - alive-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}" + alive-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}" alive-trim = "LTRIM %{User-Name} 0 ${trim-count}" alive-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}" + 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}" stop-trim = "LTRIM %{User-Name} 0 ${trim-count}" stop-expire = "EXPIRE %{User-Name} ${expire-time}" } -- 2.47.2