From 72b7d215f750f70eae6c7a4d16b4938e5fa56cd4 Mon Sep 17 00:00:00 2001 From: Brian Wellington Date: Tue, 6 Mar 2001 18:17:52 +0000 Subject: [PATCH] The directory option didn't have the CFG_CLAUSEFLAG_CALLBACK bit set, so the callback wasn't executed. [RT #978] --- lib/isccfg/parser.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/isccfg/parser.c b/lib/isccfg/parser.c index 61094f77bf..128a9acfe9 100644 --- a/lib/isccfg/parser.c +++ b/lib/isccfg/parser.c @@ -15,7 +15,7 @@ * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: parser.c,v 1.41 2001/03/03 02:18:11 gson Exp $ */ +/* $Id: parser.c,v 1.42 2001/03/06 18:17:52 bwelling Exp $ */ #include @@ -796,7 +796,7 @@ options_clauses[] = { { "coresize", &cfg_type_size, 0 }, { "datasize", &cfg_type_size, 0 }, { "deallocate-on-exit", &cfg_type_boolean, CFG_CLAUSEFLAG_OBSOLETE }, - { "directory", &cfg_type_qstring, 0 }, + { "directory", &cfg_type_qstring, CFG_CLAUSEFLAG_CALLBACK }, { "dump-file", &cfg_type_qstring, 0 }, { "fake-iquery", &cfg_type_boolean, CFG_CLAUSEFLAG_OBSOLETE }, { "files", &cfg_type_size, 0 },