Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Joey Salazar
BIND
Commits
b7bc86a4
Commit
b7bc86a4
authored
Jun 03, 2010
by
Mark Andrews
Browse files
2912. [func] Windows clients don't like UPDATE responses that clear
the zone section. [RT #20986]
parent
9f9ba278
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
b7bc86a4
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.
[RT #21367]
...
...
lib/dns/message.c
View file @
b7bc86a4
...
...
@@ -15,7 +15,7 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: message.c,v 1.25
3
2010/0
5/13 00:40:46
marka Exp $ */
/* $Id: message.c,v 1.25
4
2010/0
6/03 05:23:27
marka Exp $ */
/*! \file */
...
...
@@ -2527,7 +2527,9 @@ dns_message_reply(dns_message_t *msg, isc_boolean_t want_question_section) {
if
(
msg
->
opcode
!=
dns_opcode_query
&&
msg
->
opcode
!=
dns_opcode_notify
)
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
)
return
(
DNS_R_FORMERR
);
first_section
=
DNS_SECTION_ANSWER
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment