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_2_2_0~9 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=85e61a4204ea118d45f0477479e6db2e6654ecf2;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 f4da35ed8d2..74b67381f29 100644 --- a/src/modules/rlm_preprocess/rlm_preprocess.c +++ b/src/modules/rlm_preprocess/rlm_preprocess.c @@ -47,11 +47,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,