Report information
The Basics
Id:
46014
Status:
resolved
Priority:
Medium/Medium
Queue:

People
Owner:
Nobody in particular
Cc:
AdminCc:

BugTracker
Version Fixed:
9.9.12, 9.9.12(sub), 9.10.7, 9.10.7(sub), 9.11.3, 9.12.0
Version Found:
(no value)
Versions Affected:
(no value)
Versions Planned:
(no value)
Priority:
P2 Normal
Severity:
S2 Normal
CVSS Score:
(no value)
CVE ID:
(no value)
Component:
(no value)
Area:
bug

Dates
Created:Fri, 15 Sep 2017 14:20:51 -0400
Updated:Mon, 18 Sep 2017 00:32:15 -0400
Closed:Mon, 18 Sep 2017 00:32:15 -0400



This bug tracker is no longer active.

Please go to our Gitlab to submit issues (both feature requests and bug reports) for active projects maintained by Internet Systems Consortium (ISC).

Due to security and confidentiality requirements, full access is limited to the primary maintainers.

Subject: [PATCH/trivia] nsupdate: correct caller name
Date: Fri, 15 Sep 2017 19:20:33 +0100
CC: "Tony Finch" <dot@dotat.at>
From: "Tony Finch" <dot@dotat.at>
To: bind9-bugs@isc.org
--- bin/nsupdate/nsupdate.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/nsupdate/nsupdate.c b/bin/nsupdate/nsupdate.c index e5436e7..ab2b13e 100644 --- a/bin/nsupdate/nsupdate.c +++ b/bin/nsupdate/nsupdate.c @@ -2371,7 +2371,8 @@ update_completed(isc_task_t *task, isc_event_t *event) { } if (reqev->result != ISC_R_SUCCESS) { - if (!next_master("recvsoa", &master_servers[master_inuse], + if (!next_master("update_completed", + &master_servers[master_inuse], reqev->result)) { seenerror = ISC_TRUE; goto done; -- 2.10.1.445.g3cdd5d1
4725. [bug] Nsupdate: "recvsoa" was incorrectly reported for failures in sending the update message. The correct location to be reported is "update_completed". [RT #46014]