Skip to content

Commit

Permalink
swap to "require_enum_prefix = yes" by default.
Browse files Browse the repository at this point in the history
Hopefully some tests will pass.  :)
  • Loading branch information
alandekok committed Jan 16, 2025
1 parent 1c0f7cf commit ba69df8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/server/main_config.c
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ extern bool tmpl_require_enum_prefix;
static const conf_parser_t migrate_config[] = {
{ FR_CONF_OFFSET_FLAGS("rewrite_update", CONF_FLAG_HIDDEN, main_config_t, rewrite_update) },
{ FR_CONF_OFFSET_FLAGS("forbid_update", CONF_FLAG_HIDDEN, main_config_t, forbid_update) },
{ FR_CONF_OFFSET_FLAGS("require_enum_prefix", CONF_FLAG_HIDDEN, main_config_t, require_enum_prefix) },
{ FR_CONF_OFFSET_FLAGS("require_enum_prefix", CONF_FLAG_HIDDEN, main_config_t, require_enum_prefix), .dflt = "yes" },

CONF_PARSER_TERMINATOR
};
Expand Down

0 comments on commit ba69df8

Please sign in to comment.