summaryrefslogtreecommitdiff
path: root/net/nsd
diff options
context:
space:
mode:
authoritojun <itojun>2003-07-28 22:38:26 +0000
committeritojun <itojun>2003-07-28 22:38:26 +0000
commite6397da708f6ed84c5ef689a96722c9c865a2f0b (patch)
treea0ea4cdb8aaa91402a13012a67dcb4e9964562e8 /net/nsd
parent127a988d272478019e5ffd254d2e988732474826 (diff)
downloadpkgsrc-e6397da708f6ed84c5ef689a96722c9c865a2f0b.tar.gz
1.2.2
============= BUG FIXES: - Bug #59: NSD returns FORMERR when the query name is >= 246 bytes. - Bug #60: Zonec runs out of file descriptors with many zones. - Bug #61: nsdc uses /bin/sh hardwired (and should not). - Bug #62: NSD is not able to log to a file. - Bug #63: nsdc update and zonec are too tallkative. - Bug #64: Answer for request of a host resolved by a wildcard-resource-record is not understandable by dig.
Diffstat (limited to 'net/nsd')
-rw-r--r--net/nsd/Makefile4
-rw-r--r--net/nsd/distinfo7
-rw-r--r--net/nsd/patches/patch-aa22
3 files changed, 5 insertions, 28 deletions
diff --git a/net/nsd/Makefile b/net/nsd/Makefile
index 3a245ae73c3..de4810c0b47 100644
--- a/net/nsd/Makefile
+++ b/net/nsd/Makefile
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.15 2003/07/21 17:10:57 martti Exp $
+# $NetBSD: Makefile,v 1.16 2003/07/28 22:38:26 itojun Exp $
-DISTNAME= nsd-1.2.1
+DISTNAME= nsd-1.2.2
CATEGORIES= net
MASTER_SITES= http://www.nlnetlabs.nl/downloads/nsd/
diff --git a/net/nsd/distinfo b/net/nsd/distinfo
index 4dbee65740d..670d4d7ab40 100644
--- a/net/nsd/distinfo
+++ b/net/nsd/distinfo
@@ -1,5 +1,4 @@
-$NetBSD: distinfo,v 1.10 2003/07/17 08:56:35 itojun Exp $
+$NetBSD: distinfo,v 1.11 2003/07/28 22:38:26 itojun Exp $
-SHA1 (nsd-1.2.1.tar.gz) = 3fde16082d5c3b67a2c6f774374a60cdf39ec6e9
-Size (nsd-1.2.1.tar.gz) = 138427 bytes
-SHA1 (patch-aa) = 0e5c27b668edf2868b4604512841c414ec267f61
+SHA1 (nsd-1.2.2.tar.gz) = a3eb9dec6bd291936926eb26ec2b0bd8e161617d
+Size (nsd-1.2.2.tar.gz) = 140569 bytes
diff --git a/net/nsd/patches/patch-aa b/net/nsd/patches/patch-aa
deleted file mode 100644
index c318861c4f7..00000000000
--- a/net/nsd/patches/patch-aa
+++ /dev/null
@@ -1,22 +0,0 @@
-$NetBSD: patch-aa,v 1.6 2003/07/17 08:56:35 itojun Exp $
-
-Index: query.c
-===================================================================
-RCS file: /cvs/nsd/query.c,v
-retrieving revision 1.125
-diff -u -r1.125 query.c
---- query.c 7 Jul 2003 12:59:37 -0000 1.125
-+++ query.c 17 Jul 2003 08:46:26 -0000
-@@ -356,8 +356,10 @@
- * in question dname or the domain name is longer than
- * MAXDOMAINLEN ...
- */
-- if ((*src & 0xc0) || (src + *src > query->iobufptr) ||
-- ((src - query->iobuf + *src) > MAXDOMAINLEN)) {
-+ if ((*src & 0xc0) ||
-+ (src + *src + 1 > query->iobufptr) ||
-+ (src + *src + 1 > query_name + MAXDOMAINLEN))
-+ {
- query_formerr(query);
- return NULL;
- }