diff options
Diffstat (limited to 'usr.sbin/bind/lib/isccfg/log.c')
-rw-r--r-- | usr.sbin/bind/lib/isccfg/log.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/bind/lib/isccfg/log.c b/usr.sbin/bind/lib/isccfg/log.c index b402f39bf69..a9a270a33ad 100644 --- a/usr.sbin/bind/lib/isccfg/log.c +++ b/usr.sbin/bind/lib/isccfg/log.c @@ -14,7 +14,7 @@ * PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: log.c,v 1.3 2019/12/17 01:46:38 sthen Exp $ */ +/* $Id: log.c,v 1.4 2020/01/09 14:18:30 florian Exp $ */ /*! \file */ @@ -28,7 +28,7 @@ * When adding a new category, be sure to add the appropriate * \#define to <isccfg/log.h>. */ -LIBISCCFG_EXTERNAL_DATA isc_logcategory_t cfg_categories[] = { +isc_logcategory_t cfg_categories[] = { { "config", 0 }, { NULL, 0 } }; @@ -37,7 +37,7 @@ LIBISCCFG_EXTERNAL_DATA isc_logcategory_t cfg_categories[] = { * When adding a new module, be sure to add the appropriate * \#define to <isccfg/log.h>. */ -LIBISCCFG_EXTERNAL_DATA isc_logmodule_t cfg_modules[] = { +isc_logmodule_t cfg_modules[] = { { "isccfg/parser", 0 }, { NULL, 0 } }; |