diff --git a/CHANGES b/CHANGES index eaac2ef29d..92f58b6194 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,6 @@ +2580. [bug] UpdateRej statistics counter could be incremented twice + for one rejection. [RT #19476] + 2579. [bug] DNSSEC lookaside validation failed to handle unknown algorithms. [RT #19479] diff --git a/bin/named/update.c b/bin/named/update.c index f5aa6f50e2..50268e9737 100644 --- a/bin/named/update.c +++ b/bin/named/update.c @@ -15,7 +15,7 @@ * PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: update.c,v 1.155 2009/01/27 22:29:58 jinmei Exp $ */ +/* $Id: update.c,v 1.156 2009/03/18 22:17:24 jinmei Exp $ */ #include @@ -4126,9 +4126,6 @@ update_action(isc_task_t *task, isc_event_t *event) { goto common; failure: - if (result == DNS_R_REFUSED) - inc_stats(zone, dns_nsstatscounter_updaterej); - /* * The reason for failure should have been logged at this point. */