2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 06:25:31 +00:00

make the fix more complete

This commit is contained in:
JINMEI Tatuya
2022-06-13 16:30:00 -07:00
parent 2b81a69659
commit a58647df6a

View File

@@ -13641,7 +13641,7 @@ stub_callback(isc_task_t *task, isc_event_t *event) {
isc_buffer_t rb; isc_buffer_t rb;
isc_buffer_init(&rb, opcode, sizeof(opcode)); 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, dns_zone_log(zone, ISC_LOG_INFO,
"refreshing stub: " "refreshing stub: "
@@ -14051,7 +14051,7 @@ refresh_callback(isc_task_t *task, isc_event_t *event) {
isc_buffer_t rb; isc_buffer_t rb;
isc_buffer_init(&rb, opcode, sizeof(opcode)); 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, dns_zone_log(zone, ISC_LOG_INFO,
"refresh: " "refresh: "
@@ -18269,7 +18269,7 @@ forward_callback(isc_task_t *task, isc_event_t *event) {
isc_buffer_t rb; isc_buffer_t rb;
isc_buffer_init(&rb, opcode, sizeof(opcode)); 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, dns_zone_log(zone, ISC_LOG_INFO,
"forwarding dynamic update: " "forwarding dynamic update: "