From 9c18be2a6f66eefc319b7ae9c151b89582045d92 Mon Sep 17 00:00:00 2001 From: "Alan T. DeKok" Date: Fri, 9 May 2025 11:12:47 -0400 Subject: [PATCH] dedup_key should have PW_TYPE_XLAT #5533 --- src/modules/rlm_eap/rlm_eap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 }; -- 2.47.2