diff options
author | Florian Obser <florian@cvs.openbsd.org> | 2020-01-09 14:18:31 +0000 |
---|---|---|
committer | Florian Obser <florian@cvs.openbsd.org> | 2020-01-09 14:18:31 +0000 |
commit | f8383418ca1598299c555b342b4b5e02f54268e8 (patch) | |
tree | bd4f35e8ce57251d044101b113165f44df4f7b40 /usr.sbin/bind/lib/dns/log.c | |
parent | 964cd36910587fd9d49bf1c096a0cf52c151b62f (diff) |
Assorted unifdefs:
#define ISC_PLATFORM_NEEDSYSSELECTH 1
#define ISC_PLATFORM_HAVESTATNSEC 1
#define ISC_PLATFORM_RLIMITTYPE rlim_t
#define ISC_PLATFORM_HAVELONGLONG 1
#undef ISC_PLATFORM_BRACEPTHREADONCEINIT
#undef ISC_PLATFORM_USEDECLSPEC
#define ISC_PLATFORM_HAVESYSUNH 1
#define ISC_PLATFORM_HAVESTRINGSH 1
#define ISC_PLATFORM_WANTAES 1
#define ISC_PLATFORM_USESIT 1
#define LIBISC_EXTERNAL_DATA
#define LIBDNS_EXTERNAL_DATA
#define LIBISCCFG_EXTERNAL_DATA
#define LIBBIND9_EXTERNAL_DATA
#define LIBTESTS_EXTERNAL_DATA
prodding deraadt@
Diffstat (limited to 'usr.sbin/bind/lib/dns/log.c')
-rw-r--r-- | usr.sbin/bind/lib/dns/log.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/bind/lib/dns/log.c b/usr.sbin/bind/lib/dns/log.c index 5d64991372f..4d8a7e9b73c 100644 --- a/usr.sbin/bind/lib/dns/log.c +++ b/usr.sbin/bind/lib/dns/log.c @@ -28,7 +28,7 @@ * When adding a new category, be sure to add the appropriate * \#define to <dns/log.h>. */ -LIBDNS_EXTERNAL_DATA isc_logcategory_t dns_categories[] = { +isc_logcategory_t dns_categories[] = { { "notify", 0 }, { "database", 0 }, { "security", 0 }, @@ -52,7 +52,7 @@ LIBDNS_EXTERNAL_DATA isc_logcategory_t dns_categories[] = { * When adding a new module, be sure to add the appropriate * \#define to <dns/log.h>. */ -LIBDNS_EXTERNAL_DATA isc_logmodule_t dns_modules[] = { +isc_logmodule_t dns_modules[] = { { "dns/db", 0 }, { "dns/rbtdb", 0 }, { "dns/rbtdb64", 0 }, @@ -87,7 +87,7 @@ LIBDNS_EXTERNAL_DATA isc_logmodule_t dns_modules[] = { { NULL, 0 } }; -LIBDNS_EXTERNAL_DATA isc_log_t *dns_lctx = NULL; +isc_log_t *dns_lctx = NULL; void dns_log_init(isc_log_t *lctx) { |