mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-09-02 23:55:27 +00:00
[master] fix +split and +rrcomments with dig +short
4101. [bug] dig: the +split and +rrcomments options didn't work with +short. [RT #39291]
This commit is contained in:
3
CHANGES
3
CHANGES
@@ -1,3 +1,6 @@
|
|||||||
|
4101. [bug] dig: the +split and +rrcomments options didn't
|
||||||
|
work with +short. [RT #39291]
|
||||||
|
|
||||||
4100. [bug] Inherited owernames on the line immediately following
|
4100. [bug] Inherited owernames on the line immediately following
|
||||||
a $INCLUDE were not working. [RT #39268]
|
a $INCLUDE were not working. [RT #39268]
|
||||||
|
|
||||||
|
@@ -344,9 +344,12 @@ say_message(dns_rdata_t *rdata, dig_query_t *query, isc_buffer_t *buf) {
|
|||||||
ADD_STRING(buf, " ");
|
ADD_STRING(buf, " ");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (rrcomments)
|
||||||
|
styleflags |= DNS_STYLEFLAG_RRCOMMENT;
|
||||||
if (nocrypto)
|
if (nocrypto)
|
||||||
styleflags |= DNS_STYLEFLAG_NOCRYPTO;
|
styleflags |= DNS_STYLEFLAG_NOCRYPTO;
|
||||||
result = dns_rdata_tofmttext(rdata, NULL, styleflags, 0, 60, " ", buf);
|
result = dns_rdata_tofmttext(rdata, NULL, styleflags, 0,
|
||||||
|
splitwidth, " ", buf);
|
||||||
if (result == ISC_R_NOSPACE)
|
if (result == ISC_R_NOSPACE)
|
||||||
return (result);
|
return (result);
|
||||||
check_result(result, "dns_rdata_totext");
|
check_result(result, "dns_rdata_totext");
|
||||||
|
@@ -587,6 +587,12 @@
|
|||||||
cause an assertion failure in mem.c. [RT #38979]
|
cause an assertion failure in mem.c. [RT #38979]
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Some answer formatting options didn't work correctly with
|
||||||
|
<command>dig +short</command>. [RT #39291]
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
</itemizedlist>
|
</itemizedlist>
|
||||||
</sect2>
|
</sect2>
|
||||||
<sect2 id="end_of_life">
|
<sect2 id="end_of_life">
|
||||||
|
Reference in New Issue
Block a user