From: JINMEI Tatuya Date: Mon, 13 Jun 2022 23:30:00 +0000 (-0700) Subject: make the fix more complete X-Git-Tag: v9.19.3~55^2~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a58647df6a0afa188ed90c410d79ccfaeacfbf8b;p=thirdparty%2Fbind9.git make the fix more complete --- diff --git a/lib/dns/zone.c b/lib/dns/zone.c index 440ce51f9ac..67e9e526b96 100644 --- a/lib/dns/zone.c +++ b/lib/dns/zone.c @@ -13641,7 +13641,7 @@ stub_callback(isc_task_t *task, isc_event_t *event) { isc_buffer_t rb; isc_buffer_init(&rb, opcode, sizeof(opcode)); - (void)dns_opcode_totext(msg->rcode, &rb); + (void)dns_opcode_totext(msg->opcode, &rb); dns_zone_log(zone, ISC_LOG_INFO, "refreshing stub: " @@ -14051,7 +14051,7 @@ refresh_callback(isc_task_t *task, isc_event_t *event) { isc_buffer_t rb; isc_buffer_init(&rb, opcode, sizeof(opcode)); - (void)dns_opcode_totext(msg->rcode, &rb); + (void)dns_opcode_totext(msg->opcode, &rb); dns_zone_log(zone, ISC_LOG_INFO, "refresh: " @@ -18269,7 +18269,7 @@ forward_callback(isc_task_t *task, isc_event_t *event) { isc_buffer_t rb; isc_buffer_init(&rb, opcode, sizeof(opcode)); - (void)dns_opcode_totext(msg->rcode, &rb); + (void)dns_opcode_totext(msg->opcode, &rb); dns_zone_log(zone, ISC_LOG_INFO, "forwarding dynamic update: "