mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-12 20:59:59 -04:00
4312. [bug] dig's unknown dns and edns flags (MBZ value) logging
was not consistent. [RT #41600]
(cherry picked from commit 8d00c5ab2c)
This commit is contained in:
parent
c4cf9df942
commit
6442633cc2
2 changed files with 4 additions and 1 deletions
3
CHANGES
3
CHANGES
|
|
@ -1,3 +1,6 @@
|
|||
4312. [bug] dig's unknown dns and edns flags (MBZ value) logging
|
||||
was not consistent. [RT #41600]
|
||||
|
||||
4311. [bug] Prevent "rndc delzone" from being used on
|
||||
response-policy zones. [RT #41593]
|
||||
|
||||
|
|
|
|||
|
|
@ -3254,7 +3254,7 @@ dns_message_pseudosectiontotext(dns_message_t *msg,
|
|||
mbz &= ~DNS_MESSAGEEXTFLAG_DO; /* Known Flags. */
|
||||
if (mbz != 0) {
|
||||
ADD_STRING(target, "; MBZ: ");
|
||||
snprintf(buf, sizeof(buf), "%.4x ", mbz);
|
||||
snprintf(buf, sizeof(buf), "0x%.4x", mbz);
|
||||
ADD_STRING(target, buf);
|
||||
ADD_STRING(target, ", udp: ");
|
||||
} else
|
||||
|
|
|
|||
Loading…
Reference in a new issue