mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-28 04:34:54 -04:00
make the fix more complete
This commit is contained in:
parent
2b81a69659
commit
a58647df6a
1 changed files with 3 additions and 3 deletions
|
|
@ -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: "
|
||||
|
|
|
|||
Loading…
Reference in a new issue