2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-30 14:07:59 +00:00

4367. [bug] Remove unnecessary assignment of loadtime in

zone_touched. [RT #42440]
This commit is contained in:
Mark Andrews 2016-05-18 12:39:50 +10:00
parent 26f652d387
commit 049a49c295
2 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,8 @@
--- 9.11.0a1 released ---
4367. [bug] Remove unnecessary assignment of loadtime in
zone_touched. [RT #42440]
4366. [bug] Address race condition when updating rbtnode bit
fields. [RT #42379]

View File

@ -1759,10 +1759,7 @@ zone_touched(dns_zone_t *zone) {
result = isc_file_getmodtime(zone->masterfile, &modtime);
if (result != ISC_R_SUCCESS ||
isc_time_compare(&modtime, &zone->loadtime) > 0)
{
zone->loadtime = modtime;
return (ISC_TRUE);
}
for (include = ISC_LIST_HEAD(zone->includes);
include != NULL;