From: Alan T. DeKok Date: Fri, 17 Sep 2021 15:42:04 +0000 (-0400) Subject: use correct data type. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=383a65b399956f66d9beecc1c3607a2a84655d32;p=thirdparty%2Ffreeradius-server.git use correct data type. Manual port of commit 622be93 --- diff --git a/src/modules/rlm_unix/rlm_unix.c b/src/modules/rlm_unix/rlm_unix.c index e01b8f341c..e3324fb7f8 100644 --- a/src/modules/rlm_unix/rlm_unix.c +++ b/src/modules/rlm_unix/rlm_unix.c @@ -425,7 +425,7 @@ static unlang_action_t CC_HINT(nonnull) mod_accounting(rlm_rcode_t *p_result, mo port_seen = true; } else if (vp->da == attr_acct_delay_time) { - delay = vp->vp_ipv4addr; + delay = vp->vp_uint32; } }