]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
Hungroups and hints should default to NULL, so theyre disabled if omitted
authorArran Cudbard-Bell <a.cudbardb@freeradius.org>
Fri, 7 Sep 2012 13:47:39 +0000 (14:47 +0100)
committerArran Cudbard-Bell <a.cudbardb@freeradius.org>
Fri, 7 Sep 2012 13:48:00 +0000 (14:48 +0100)
src/modules/rlm_preprocess/rlm_preprocess.c

index f4da35ed8d291a43bfcb89179480cc1e82213272..74b67381f2968f583e76bb631e59921f799b5cd2 100644 (file)
@@ -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,