summaryrefslogtreecommitdiffstats
path: root/bind-9.5-edns.patch
diff options
context:
space:
mode:
authorAdam Tkac <atkac@fedoraproject.org>2008-09-24 09:00:04 +0000
committerAdam Tkac <atkac@fedoraproject.org>2008-09-24 09:00:04 +0000
commita99cd96ce07e50c2c2adba45e27cd20a34d52c72 (patch)
treecfa4e23d154eed99736a950a082bf4a47e4a32bf /bind-9.5-edns.patch
parent77020b9c5b57e0eb8089509e44e189e25e1192f0 (diff)
downloadbind-a99cd96ce07e50c2c2adba45e27cd20a34d52c72.tar.gz
bind-a99cd96ce07e50c2c2adba45e27cd20a34d52c72.tar.xz
bind-a99cd96ce07e50c2c2adba45e27cd20a34d52c72.zip
- 9.5.1b2 releasebind-9_5_1-0_7_b2_fc10
- patches merged - bind95-rh454783.patch - bind-9.5-edns.patch - bind95-rh450995.patch - bind95-rh457175.patch
Diffstat (limited to 'bind-9.5-edns.patch')
-rw-r--r--bind-9.5-edns.patch21
1 files changed, 0 insertions, 21 deletions
diff --git a/bind-9.5-edns.patch b/bind-9.5-edns.patch
deleted file mode 100644
index 40f6412..0000000
--- a/bind-9.5-edns.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-diff -up bind-9.5.0b3/lib/dns/resolver.c.edns bind-9.5.0b3/lib/dns/resolver.c
---- bind-9.5.0b3/lib/dns/resolver.c.edns 2008-05-13 08:55:43.000000000 +0200
-+++ bind-9.5.0b3/lib/dns/resolver.c 2008-05-13 08:58:12.000000000 +0200
-@@ -1552,13 +1552,16 @@ resquery_send(resquery_t *query) {
- dns_peer_getsupportedns(peer, &useedns) == ISC_R_SUCCESS &&
- !useedns)
- {
-- query->options |= DNS_FETCHOPT_NOEDNS0;
- dns_adb_changeflags(fctx->adb,
- query->addrinfo,
- DNS_FETCHOPT_NOEDNS0,
- DNS_FETCHOPT_NOEDNS0);
- }
-
-+ /* Sync query->options and query->addrinfo->flags now */
-+ if ((query->addrinfo->flags & DNS_FETCHOPT_NOEDNS0) != 0)
-+ query->options |= DNS_FETCHOPT_NOEDNS0;
-+
- /*
- * Use EDNS0, unless the caller doesn't want it, or we know that
- * the remote server doesn't like it.