summaryrefslogtreecommitdiff
path: root/examples/bind9-patches/0001-leave-the-question-section-in-update-responses.patch
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2012-07-02 07:24:21 +1000
committerAndrew Bartlett <abartlet@samba.org>2012-07-03 08:13:02 +1000
commitd0460d96d62d879545818c7f0966b1026b27a007 (patch)
tree959903572619cebde5414a321acad5338912bb6b /examples/bind9-patches/0001-leave-the-question-section-in-update-responses.patch
parent5de841f6f249ea742a8ed0ef5a795f77a364cc35 (diff)
downloadsamba-d0460d96d62d879545818c7f0966b1026b27a007.tar.gz
samba-d0460d96d62d879545818c7f0966b1026b27a007.tar.bz2
samba-d0460d96d62d879545818c7f0966b1026b27a007.zip
s4-bind: Remove patches now incorporated into bind9
These patches are in bind9 now, and we do not recomment using them any more as the improved version in bind 9.8 is much less prone to failure. Andrew Bartlett
Diffstat (limited to 'examples/bind9-patches/0001-leave-the-question-section-in-update-responses.patch')
-rw-r--r--examples/bind9-patches/0001-leave-the-question-section-in-update-responses.patch29
1 files changed, 0 insertions, 29 deletions
diff --git a/examples/bind9-patches/0001-leave-the-question-section-in-update-responses.patch b/examples/bind9-patches/0001-leave-the-question-section-in-update-responses.patch
deleted file mode 100644
index 3716dd4ab6..0000000000
--- a/examples/bind9-patches/0001-leave-the-question-section-in-update-responses.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-From 1d97835f07fd5142187629941422f87b33015414 Mon Sep 17 00:00:00 2001
-From: Andrew Tridgell <tridge@samba.org>
-Date: Wed, 17 Feb 2010 10:47:59 +1100
-Subject: [PATCH 1/5] leave the question section in update responses.
-
-This fixes TSIG-GSS updates from windows7 and w2k8r2, which require
-the question to be included in the initial refusal for the unsigned
-update.
----
- lib/dns/message.c | 3 ++-
- 1 files changed, 2 insertions(+), 1 deletions(-)
-
-diff --git a/lib/dns/message.c b/lib/dns/message.c
-index b541635..ae4965f 100644
---- a/lib/dns/message.c
-+++ b/lib/dns/message.c
-@@ -2474,7 +2474,8 @@ dns_message_reply(dns_message_t *msg, isc_boolean_t want_question_section) {
- if (!msg->header_ok)
- return (DNS_R_FORMERR);
- if (msg->opcode != dns_opcode_query &&
-- msg->opcode != dns_opcode_notify)
-+ msg->opcode != dns_opcode_notify &&
-+ msg->opcode != dns_opcode_update)
- want_question_section = ISC_FALSE;
- if (want_question_section) {
- if (!msg->question_ok)
---
-1.6.3.3
-