aboutsummaryrefslogtreecommitdiff
path: root/dns/nsd/files
diff options
context:
space:
mode:
authorChristian Weisgerber <naddy@FreeBSD.org>2003-08-03 00:51:14 +0000
committerChristian Weisgerber <naddy@FreeBSD.org>2003-08-03 00:51:14 +0000
commite94fb038bc12e4182a57b65a0f6c182a19197c8b (patch)
tree235a73bac719ed71dc45a8c1b4ac9e448230005d /dns/nsd/files
parentfe67ef00ed77c6ed717f6e92aa10c5a8019689d1 (diff)
downloadports-e94fb038bc12e4182a57b65a0f6c182a19197c8b.tar.gz
ports-e94fb038bc12e4182a57b65a0f6c182a19197c8b.zip
Notes
Diffstat (limited to 'dns/nsd/files')
-rw-r--r--dns/nsd/files/patch-Makefile11
-rw-r--r--dns/nsd/files/patch-aa19
-rw-r--r--dns/nsd/files/patch-ab20
3 files changed, 0 insertions, 50 deletions
diff --git a/dns/nsd/files/patch-Makefile b/dns/nsd/files/patch-Makefile
deleted file mode 100644
index 28b6f2d4b74c..000000000000
--- a/dns/nsd/files/patch-Makefile
+++ /dev/null
@@ -1,11 +0,0 @@
---- Makefile.orig Wed Feb 12 14:17:18 2003
-+++ Makefile Wed Feb 12 14:17:35 2003
-@@ -67,7 +67,7 @@
- #
-
- # The directory where the nsd nsdc and zonec binaries will be installed
--PREFIX = /usr/local
-+#PREFIX = /usr/local
- NSDBINDIR = ${PREFIX}/sbin
- NSDMANDIR = ${PREFIX}/man/man8
-
diff --git a/dns/nsd/files/patch-aa b/dns/nsd/files/patch-aa
deleted file mode 100644
index b987f2a1529b..000000000000
--- a/dns/nsd/files/patch-aa
+++ /dev/null
@@ -1,19 +0,0 @@
---- nsd.c 17 Dec 2002 14:42:06 -0000 1.56.2.10
-+++ nsd.c 12 Feb 2003 09:19:50 -0000
-@@ -159,6 +159,7 @@
- signal(SIGINT, &sig_handler);
- signal(SIGILL, &sig_handler);
- signal(SIGALRM, &sig_handler);
-+ signal(SIGPIPE, SIG_IGN);
-
-
- /* Are we a tcp child? */
-@@ -566,6 +567,8 @@
- signal(SIGINT, &sig_handler);
- signal(SIGILL, &sig_handler);
- signal(SIGALRM, &sig_handler);
-+ signal(SIGPIPE, SIG_IGN);
-+
-
- /* Get our process id */
- nsd.pid[0] = getpid();
diff --git a/dns/nsd/files/patch-ab b/dns/nsd/files/patch-ab
deleted file mode 100644
index 12b595e4fc97..000000000000
--- a/dns/nsd/files/patch-ab
+++ /dev/null
@@ -1,20 +0,0 @@
-diff -u -r1.83 query.c
---- query.c 14 Oct 2002 13:12:16 -0000 1.83
-+++ query.c 18 Feb 2003 10:46:11 -0000
-@@ -145,11 +145,13 @@
-
- /* Truncate */
- if(d && DOMAIN_FLAGS(d) & NAMEDB_DELEGATION) {
-- ANCOUNT(q) = NSCOUNT(q);
-+ ANCOUNT(q) = htons(ntohs(NSCOUNT(q)) + ntohs(ARCOUNT(q)));
-+ } else {
-+ q->iobufptr = qptr + ANSWER_RRS(a, ntohs(ANCOUNT(q)));
- }
-- NSCOUNT(q) = 0;
-+
- ARCOUNT(q) = 0;
-- q->iobufptr = qptr + ANSWER_RRS(a, ntohs(ANCOUNT(q)));
-+ NSCOUNT(q) = 0;
-
- /* More data... */
- return 1;