diff options
Diffstat (limited to 'net/nsd')
-rw-r--r-- | net/nsd/Makefile | 1 | ||||
-rw-r--r-- | net/nsd/files/patch-aa | 19 | ||||
-rw-r--r-- | net/nsd/files/patch-ab | 20 |
3 files changed, 40 insertions, 0 deletions
diff --git a/net/nsd/Makefile b/net/nsd/Makefile index 9c01aa999281..16db84d26fa7 100644 --- a/net/nsd/Makefile +++ b/net/nsd/Makefile @@ -7,6 +7,7 @@ PORTNAME= nsd PORTVERSION= 1.0.2 +PORTREVISION= 1 CATEGORIES= net MASTER_SITES= http://www.nlnetlabs.nl/downloads/nsd/ diff --git a/net/nsd/files/patch-aa b/net/nsd/files/patch-aa new file mode 100644 index 000000000000..b987f2a1529b --- /dev/null +++ b/net/nsd/files/patch-aa @@ -0,0 +1,19 @@ +--- 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/net/nsd/files/patch-ab b/net/nsd/files/patch-ab new file mode 100644 index 000000000000..12b595e4fc97 --- /dev/null +++ b/net/nsd/files/patch-ab @@ -0,0 +1,20 @@ +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; |