diff --git a/CHANGES b/CHANGES index 5a010ed0e2..1865dbfcdf 100644 --- a/CHANGES +++ b/CHANGES @@ -1,4 +1,8 @@ +1015. [bug] Log channels that had a "versions" option but no + "size" option failed to create numbered log + files. [RT #1783] + 1014. [bug] Some queries would cause statistics counters to increment more than once or not at all. [RT #1321] diff --git a/bin/named/logconf.c b/bin/named/logconf.c index 4fab9dda78..b7a6edc605 100644 --- a/bin/named/logconf.c +++ b/bin/named/logconf.c @@ -15,7 +15,7 @@ * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: logconf.c,v 1.30 2001/05/28 05:16:57 marka Exp $ */ +/* $Id: logconf.c,v 1.31 2001/09/25 00:55:22 gson Exp $ */ #include @@ -134,7 +134,7 @@ channel_fromconf(cfg_obj_t *channel, isc_logconfig_t *lctx) { cfg_obj_t *sizeobj = cfg_tuple_get(fileobj, "size"); cfg_obj_t *versionsobj = cfg_tuple_get(fileobj, "versions"); isc_int32_t versions = ISC_LOG_ROLLNEVER; - isc_offset_t size = ISC_OFFSET_MAXIMUM; + isc_offset_t size = 0; type = ISC_LOG_TOFILE;