From 406ce0cd9633188a79c008e8f7c8092fa54bc98c Mon Sep 17 00:00:00 2001 From: James Brister Date: Fri, 23 Jun 2000 22:30:02 +0000 Subject: [PATCH] 281. [bug] fixed list of recognised config file category names. --- CHANGES | 2 ++ lib/dns/config/confcommon.c | 22 +++++++++++++++++++++- 2 files changed, 23 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index ad7b478860..10f40a6326 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,5 @@ + 281. [bug] fixed list of recognised config file category names. + 280. [func] Add isc-config.sh, which can be used to more easily build applications that link with our libraries. diff --git a/lib/dns/config/confcommon.c b/lib/dns/config/confcommon.c index 60b2c3bdf6..3ad59592b0 100644 --- a/lib/dns/config/confcommon.c +++ b/lib/dns/config/confcommon.c @@ -15,7 +15,7 @@ * SOFTWARE. */ -/* $Id: confcommon.c,v 1.30 2000/06/01 18:25:42 tale Exp $ */ +/* $Id: confcommon.c,v 1.31 2000/06/23 22:30:02 brister Exp $ */ #include @@ -106,29 +106,49 @@ static struct dsn_c_pvt_sfnt { static const char *category_nametable[] = { + "default", + "general", + "database", + "security", + "config", + "resolver", + "xfer-in", + "xfer-out", + "notify", + "client", + "network", + "update", +#if 0 + "client", "cname", "config", "control", + "database", "db", "default", "eventlib", + "general", "insist", "lame-servers", "load", "maintenance", "ncache", + "network", "notify", "os", "packet", "panic", "parser", "queries", + "resolver", "response-checks", "security", "statistics", "update", "xfer-in", "xfer-out", +#endif + NULL };