summaryrefslogtreecommitdiff
path: root/package/pdnsd/patches/patch-src_dns_query_c
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@uclibc-ng.org>2015-03-01 13:19:12 +0100
committerWaldemar Brodkorb <wbx@uclibc-ng.org>2015-03-01 13:19:12 +0100
commitf2ea9e8dbd4cc3c77ff4cc52688d7057d3289fab (patch)
tree72ec81acffa69f2c89e52a38603a6f92fb1e72ae /package/pdnsd/patches/patch-src_dns_query_c
parentdce7d2df8c73896aeef77118fe89fc7e88d035fe (diff)
parent0943b7422376747a452bda5562c73d673cccbe68 (diff)
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'package/pdnsd/patches/patch-src_dns_query_c')
-rw-r--r--package/pdnsd/patches/patch-src_dns_query_c12
1 files changed, 0 insertions, 12 deletions
diff --git a/package/pdnsd/patches/patch-src_dns_query_c b/package/pdnsd/patches/patch-src_dns_query_c
deleted file mode 100644
index f16c3d497..000000000
--- a/package/pdnsd/patches/patch-src_dns_query_c
+++ /dev/null
@@ -1,12 +0,0 @@
-use the temporary port, not always the global one over and over again
---- pdnsd-1.2.7.orig/src/dns_query.c 2008-09-01 15:56:51.000000000 +0200
-+++ pdnsd-1.2.7/src/dns_query.c 2010-03-19 21:44:38.837858828 +0100
-@@ -650,7 +650,7 @@ static int bind_socket(int s)
- ELSE_IPV6 {
- memset(&sin.sin6,0,sizeof(struct sockaddr_in6));
- sin.sin6.sin6_family=AF_INET6;
-- sin.sin6.sin6_port=htons(global.port);
-+ sin.sin6.sin6_port=htons(prt);
- sin.sin6.sin6_flowinfo=IPV6_FLOWINFO;
- SET_SOCKA_LEN6(sin.sin6);
- sinl=sizeof(struct sockaddr_in6);