2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-09-01 15:05:23 +00:00

2912. [func] Windows clients don't like UPDATE responses that clear

the zone section. [RT #20986]
This commit is contained in:
Mark Andrews
2010-06-03 05:23:27 +00:00
parent 9f9ba278d7
commit b7bc86a4d3
2 changed files with 7 additions and 2 deletions

View File

@@ -1,3 +1,6 @@
2912. [func] Windows clients don't like UPDATE responses that clear
the zone section. [RT #20986]
2911. [bug] dnssec-signzone didn't handle out of zone records well. 2911. [bug] dnssec-signzone didn't handle out of zone records well.
[RT #21367] [RT #21367]

View File

@@ -15,7 +15,7 @@
* PERFORMANCE OF THIS SOFTWARE. * PERFORMANCE OF THIS SOFTWARE.
*/ */
/* $Id: message.c,v 1.253 2010/05/13 00:40:46 marka Exp $ */ /* $Id: message.c,v 1.254 2010/06/03 05:23:27 marka Exp $ */
/*! \file */ /*! \file */
@@ -2527,7 +2527,9 @@ dns_message_reply(dns_message_t *msg, isc_boolean_t want_question_section) {
if (msg->opcode != dns_opcode_query && if (msg->opcode != dns_opcode_query &&
msg->opcode != dns_opcode_notify) msg->opcode != dns_opcode_notify)
want_question_section = ISC_FALSE; want_question_section = ISC_FALSE;
if (want_question_section) { if (msg->opcode == dns_opcode_update)
first_section = DNS_SECTION_ADDITIONAL;
else if (want_question_section) {
if (!msg->question_ok) if (!msg->question_ok)
return (DNS_R_FORMERR); return (DNS_R_FORMERR);
first_section = DNS_SECTION_ANSWER; first_section = DNS_SECTION_ANSWER;