mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-08 21:32:11 -04:00
2580. [bug] UpdateRej statistics counter could be incremented twice
for one rejection. [RT #19476]
This commit is contained in:
parent
8e3d340655
commit
3af7cd2661
2 changed files with 4 additions and 4 deletions
3
CHANGES
3
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]
|
||||
|
||||
|
|
|
|||
|
|
@ -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 <config.h>
|
||||
|
||||
|
|
@ -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.
|
||||
*/
|
||||
|
|
|
|||
Loading…
Reference in a new issue