From: Arran Cudbard-Bell Date: Fri, 7 Sep 2012 13:47:39 +0000 (+0100) Subject: Hungroups and hints should default to NULL, so theyre disabled if omitted X-Git-Tag: release_3_0_0_beta0~9 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8d333a19b52bc9d19a3a30a9579fb6067e8c95db;p=thirdparty%2Ffreeradius-server.git Hungroups and hints should default to NULL, so theyre disabled if omitted --- diff --git a/src/modules/rlm_preprocess/rlm_preprocess.c b/src/modules/rlm_preprocess/rlm_preprocess.c index ba271dcc168..584fa8c41b8 100644 --- a/src/modules/rlm_preprocess/rlm_preprocess.c +++ b/src/modules/rlm_preprocess/rlm_preprocess.c @@ -48,11 +48,9 @@ typedef struct rlm_preprocess_t { static const CONF_PARSER module_config[] = { { "huntgroups", PW_TYPE_FILENAME, - offsetof(rlm_preprocess_t,huntgroup_file), NULL, - "${raddbdir}/huntgroups" }, + offsetof(rlm_preprocess_t,huntgroup_file), NULL, NULL }, { "hints", PW_TYPE_FILENAME, - offsetof(rlm_preprocess_t,hints_file), NULL, - "${raddbdir}/hints" }, + offsetof(rlm_preprocess_t,hints_file), NULL, NULL }, { "with_ascend_hack", PW_TYPE_BOOLEAN, offsetof(rlm_preprocess_t,with_ascend_hack), NULL, "no" }, { "ascend_channels_per_line", PW_TYPE_INTEGER,