diff options
author | Florian Obser <florian@cvs.openbsd.org> | 2018-05-17 18:58:41 +0000 |
---|---|---|
committer | Florian Obser <florian@cvs.openbsd.org> | 2018-05-17 18:58:41 +0000 |
commit | 947dac44178ffcd69576125b2f7bfa73f1048430 (patch) | |
tree | fde242d515a70160442cb260f30eca49376fa4a8 /usr.sbin/nsd/nsd-checkconf.c | |
parent | 81dc9496f8b0c33bb8a71228924df704e96eb2ff (diff) |
update to nsd 4.1.21
OK sthen
Diffstat (limited to 'usr.sbin/nsd/nsd-checkconf.c')
-rw-r--r-- | usr.sbin/nsd/nsd-checkconf.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/usr.sbin/nsd/nsd-checkconf.c b/usr.sbin/nsd/nsd-checkconf.c index 6f3354fa95b..a31e3db0cec 100644 --- a/usr.sbin/nsd/nsd-checkconf.c +++ b/usr.sbin/nsd/nsd-checkconf.c @@ -369,6 +369,7 @@ config_print_zone(nsd_options_type* opt, const char* k, int s, const char *o, SERV_GET_BIN(log_time_ascii, o); SERV_GET_BIN(round_robin, o); SERV_GET_BIN(minimal_responses, o); + SERV_GET_BIN(refuse_any, o); /* str */ SERV_GET_PATH(final, database, o); SERV_GET_STR(identity, o); @@ -508,6 +509,7 @@ config_test_print_server(nsd_options_type* opt) printf("\tlog-time-ascii: %s\n", opt->log_time_ascii?"yes":"no"); printf("\tround-robin: %s\n", opt->round_robin?"yes":"no"); printf("\tminimal-responses: %s\n", opt->minimal_responses?"yes":"no"); + printf("\trefuse-any: %s\n", opt->refuse_any?"yes":"no"); printf("\tverbosity: %d\n", opt->verbosity); for(ip = opt->ip_addresses; ip; ip=ip->next) { |