diff options
author | itojun <itojun> | 2002-09-03 14:55:05 +0000 |
---|---|---|
committer | itojun <itojun> | 2002-09-03 14:55:05 +0000 |
commit | 2eae56a8bf2a1fda6a36e8cff75fd01db574d19c (patch) | |
tree | f4393f04eab8006aa86b58c2c81ef1d85e5d615b | |
parent | 9b8b8ed00808693dbc8e52a55c455549ef158273 (diff) | |
download | pkgsrc-2eae56a8bf2a1fda6a36e8cff75fd01db574d19c.tar.gz |
upgrade to 1.0.1.
diff from 1.0.1rc2:
>Please to announce the final release of NSD-1.0.1 with minor bug fixes
>and cosmetic changes, available for download:
-rw-r--r-- | net/nsd/Makefile | 6 | ||||
-rw-r--r-- | net/nsd/distinfo | 7 | ||||
-rw-r--r-- | net/nsd/patches/patch-ab | 13 |
3 files changed, 20 insertions, 6 deletions
diff --git a/net/nsd/Makefile b/net/nsd/Makefile index 654c133462c..d84b8404884 100644 --- a/net/nsd/Makefile +++ b/net/nsd/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.7 2002/08/28 16:05:50 itojun Exp $ +# $NetBSD: Makefile,v 1.8 2002/09/03 14:55:05 itojun Exp $ -DISTNAME= nsd-1.0.1r2 -PKGNAME= nsd-1.0.1rc2 +DISTNAME= nsd-1.0.1 +PKGNAME= nsd-1.0.1 CATEGORIES= net MASTER_SITES= http://www.nlnetlabs.nl/downloads/nsd/ diff --git a/net/nsd/distinfo b/net/nsd/distinfo index a1f1c228344..7b56d687179 100644 --- a/net/nsd/distinfo +++ b/net/nsd/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.4 2002/08/28 16:05:51 itojun Exp $ +$NetBSD: distinfo,v 1.5 2002/09/03 14:55:05 itojun Exp $ -SHA1 (nsd-1.0.1r2.tar.gz) = 97f507e3115b12927b5058e7fabf6e6b04c8eca5 -Size (nsd-1.0.1r2.tar.gz) = 70648 bytes +SHA1 (nsd-1.0.1.tar.gz) = f2ba81432ee316983298c7e692ee425693a2cd9c +Size (nsd-1.0.1.tar.gz) = 70278 bytes SHA1 (patch-aa) = 2b5fd1d17678f98a9ccd0ce4eb2824447d02f02d +SHA1 (patch-ab) = a18894cfd67e4868df93afbb2596921e115ef479 diff --git a/net/nsd/patches/patch-ab b/net/nsd/patches/patch-ab new file mode 100644 index 00000000000..ffe015e931c --- /dev/null +++ b/net/nsd/patches/patch-ab @@ -0,0 +1,13 @@ +$NetBSD: patch-ab,v 1.1 2002/09/03 14:55:05 itojun Exp $ + +--- rfc1876.c- Tue Sep 3 23:52:42 2002 ++++ rfc1876.c Tue Sep 3 23:53:02 2002 +@@ -39,7 +39,7 @@ + + val = mantissa * poweroften[exponent]; + +- (void) sprintf(retbuf,"%d.%.2d", val/100, val%100); ++ (void) sprintf(retbuf,"%lu.%.2lu", val/100, val%100); + return (retbuf); + } + |