]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
dedup_key should have PW_TYPE_XLAT #5533
authorAlan T. DeKok <aland@freeradius.org>
Fri, 9 May 2025 15:12:47 +0000 (11:12 -0400)
committerAlan T. DeKok <aland@freeradius.org>
Fri, 9 May 2025 15:15:35 +0000 (11:15 -0400)
src/modules/rlm_eap/rlm_eap.c

index f94c4928a1e172cec27f7770d58b1dca7904e938..3c1d2776ab02ebf8a3aa4c4970ad312b9997f82d 100644 (file)
@@ -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
 };