summaryrefslogtreecommitdiff
path: root/examples/bind9-patches/0005-windows-doesn-t-return-valid-GSSAPI-sequence-numbers.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/0005-windows-doesn-t-return-valid-GSSAPI-sequence-numbers.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/0005-windows-doesn-t-return-valid-GSSAPI-sequence-numbers.patch')
-rw-r--r--examples/bind9-patches/0005-windows-doesn-t-return-valid-GSSAPI-sequence-numbers.patch30
1 files changed, 0 insertions, 30 deletions
diff --git a/examples/bind9-patches/0005-windows-doesn-t-return-valid-GSSAPI-sequence-numbers.patch b/examples/bind9-patches/0005-windows-doesn-t-return-valid-GSSAPI-sequence-numbers.patch
deleted file mode 100644
index a44813dd62..0000000000
--- a/examples/bind9-patches/0005-windows-doesn-t-return-valid-GSSAPI-sequence-numbers.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-From 0f6a49d9fb4a3b9f917ee9caed3a94e44db045a5 Mon Sep 17 00:00:00 2001
-From: Andrew Tridgell <tridge@samba.org>
-Date: Wed, 17 Feb 2010 15:28:51 +1100
-Subject: [PATCH 5/5] windows doesn't return valid GSSAPI sequence numbers on its
- TSIG-GSS DNS update replies
-
----
- lib/dns/gssapictx.c | 5 ++++-
- 1 files changed, 4 insertions(+), 1 deletions(-)
-
-diff --git a/lib/dns/gssapictx.c b/lib/dns/gssapictx.c
-index 879393c..69b66c5 100644
---- a/lib/dns/gssapictx.c
-+++ b/lib/dns/gssapictx.c
-@@ -536,8 +536,11 @@ dst_gssapi_initctx(dns_name_t *name, isc_buffer_t *intoken,
- gintokenp = NULL;
- }
-
-+ /* note that we don't set GSS_C_SEQUENCE_FLAG as Windows DNS
-+ * servers don't like it
-+ */
- flags = GSS_C_REPLAY_FLAG | GSS_C_MUTUAL_FLAG | GSS_C_DELEG_FLAG |
-- GSS_C_SEQUENCE_FLAG | GSS_C_INTEG_FLAG;
-+ GSS_C_INTEG_FLAG;
-
- gret = gss_init_sec_context(&minor, GSS_C_NO_CREDENTIAL, gssctx,
- gname, GSS_SPNEGO_MECHANISM, flags,
---
-1.6.3.3
-