From bdc79a71646b09df9dffdf845747b6e899da3d4f Mon Sep 17 00:00:00 2001 From: Brian Wellington Date: Fri, 2 Mar 2001 07:03:55 +0000 Subject: [PATCH] The constants CFG_CLAUSEFLAG_NEWDEFAULT and CFG_CLAUSEFLAG_NYI should have different values. --- lib/isccfg/parser.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/isccfg/parser.c b/lib/isccfg/parser.c index 31e33c03ce..eae42fd691 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.36 2001/03/02 01:10:51 gson Exp $ */ +/* $Id: parser.c,v 1.37 2001/03/02 07:03:55 bwelling Exp $ */ #include @@ -58,13 +58,13 @@ /* Clause is not implemented yet */ #define CFG_CLAUSEFLAG_NYI 0x00000008 /* Default value has changed since earlier release */ -#define CFG_CLAUSEFLAG_NEWDEFAULT 0x00000008 +#define CFG_CLAUSEFLAG_NEWDEFAULT 0x00000010 /* * Clause needs to be interpreted during parsing * by calling a callback function, like the * "directory" option. */ -#define CFG_CLAUSEFLAG_CALLBACK 0x00000010 +#define CFG_CLAUSEFLAG_CALLBACK 0x00000020 /* * Flags defining whether to accept certain types of network addresses.