From: Alan T. DeKok Date: Fri, 6 Sep 2024 18:45:04 +0000 (-0400) Subject: don't use unlang keyword as variable name X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2e453756d27b53f82acfc6f7ef3b425fe5f24fd4;p=thirdparty%2Ffreeradius-server.git don't use unlang keyword as variable name --- diff --git a/raddb/policy.d/time b/raddb/policy.d/time index 5455fa10f89..2dbec4cbada 100644 --- a/raddb/policy.d/time +++ b/raddb/policy.d/time @@ -3,7 +3,7 @@ # expiration { if (&control.Expiration) { - time_delta timeout + time_delta when # # %l is "when the server received the request" @@ -13,8 +13,8 @@ expiration { return } - &timeout = &control.Expiration - %l + &when = &control.Expiration - %l - &reply.Session-Timeout <= &timeout + &reply.Session-Timeout <= &when } }