From: Alan T. DeKok Date: Fri, 9 May 2025 15:12:47 +0000 (-0400) Subject: dedup_key should have PW_TYPE_XLAT #5533 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9c18be2a6f66eefc319b7ae9c151b89582045d92;p=thirdparty%2Ffreeradius-server.git dedup_key should have PW_TYPE_XLAT #5533 --- diff --git a/src/modules/rlm_eap/rlm_eap.c b/src/modules/rlm_eap/rlm_eap.c index f94c4928a1..3c1d2776ab 100644 --- a/src/modules/rlm_eap/rlm_eap.c +++ b/src/modules/rlm_eap/rlm_eap.c @@ -40,7 +40,7 @@ static const CONF_PARSER module_config[] = { { "cisco_accounting_username_bug", FR_CONF_OFFSET(PW_TYPE_BOOLEAN, rlm_eap_t, mod_accounting_username_bug), "no" }, { "allow_empty_identities", FR_CONF_OFFSET(PW_TYPE_BOOLEAN, rlm_eap_t, allow_empty_identities), NULL }, { "max_sessions", FR_CONF_OFFSET(PW_TYPE_INTEGER, rlm_eap_t, max_sessions), "2048" }, - { "dedup_key", FR_CONF_OFFSET(PW_TYPE_STRING, rlm_eap_t, dedup_key), "" }, + { "dedup_key", FR_CONF_OFFSET(PW_TYPE_STRING | PW_TYPE_XLAT, rlm_eap_t, dedup_key), "" }, CONF_PARSER_TERMINATOR };