2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-30 05:57:52 +00:00

The directory option didn't have the CFG_CLAUSEFLAG_CALLBACK bit set, so the

callback wasn't executed. [RT #978]
This commit is contained in:
Brian Wellington 2001-03-06 18:17:52 +00:00
parent 5aa9a23af5
commit 72b7d215f7

View File

@ -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 <config.h>
@ -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 },