diff --git a/CHANGES b/CHANGES index 59127a4ee1..8732645040 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,6 @@ + 248. [bug] global lame-ttl option was not being printed when + config structures were written out. + 247. [cleanup] Rename cache-size config option to max-cache-size. 246. [func] Rename global option cachesize to cache-size and diff --git a/bin/tests/named.conf b/bin/tests/named.conf index 49984f6d1e..50353db510 100644 --- a/bin/tests/named.conf +++ b/bin/tests/named.conf @@ -120,7 +120,7 @@ options { query-source-v6 address 8:7:6:5:4:3:2:1 port *; query-source port * address 10.0.0.54 ; - lame-ttl 477; + lame-ttl 444; max-transfer-time-in 300; max-transfer-time-out 10; diff --git a/lib/dns/config/confctx.c b/lib/dns/config/confctx.c index 2b89f6f69f..b68e614d15 100644 --- a/lib/dns/config/confctx.c +++ b/lib/dns/config/confctx.c @@ -15,7 +15,7 @@ * SOFTWARE. */ -/* $Id: confctx.c,v 1.66 2000/06/09 15:03:22 brister Exp $ */ +/* $Id: confctx.c,v 1.67 2000/06/09 15:54:26 brister Exp $ */ #include @@ -940,8 +940,7 @@ dns_c_ctx_optionsprint(FILE *fp, int indent, dns_c_options_t *options) PRINT_AS_MINUTES(max_transfer_idle_in, "max-transfer-idle-in"); PRINT_AS_MINUTES(max_transfer_idle_out, "max-transfer-idle-out"); - /* XXX LAMETTL ??? */ - + PRINT_INTEGER(lamettl, "lame-ttl"); PRINT_INTEGER(tcp_clients, "tcp-clients"); PRINT_INTEGER(recursive_clients, "recursive-clients"); PRINT_INTEGER(min_roots, "min-roots");