diff options
author | cjs <cjs@pkgsrc.org> | 2004-09-06 07:00:29 +0000 |
---|---|---|
committer | cjs <cjs@pkgsrc.org> | 2004-09-06 07:00:29 +0000 |
commit | 69f6f894889833648b16b8210fcdcceec71479c7 (patch) | |
tree | 5b48feafed6148acc92d87b96884998620441712 | |
parent | c7c5b7fc69ae1b6b528cdd93fd6e677c389b267f (diff) | |
download | pkgsrc-69f6f894889833648b16b8210fcdcceec71479c7.tar.gz |
Bugfix: a sprintf format string in the distribution patches was incorrect.
-rw-r--r-- | net/vtun/Makefile | 4 | ||||
-rw-r--r-- | net/vtun/distinfo | 3 | ||||
-rw-r--r-- | net/vtun/patches/patch-ac | 13 |
3 files changed, 17 insertions, 3 deletions
diff --git a/net/vtun/Makefile b/net/vtun/Makefile index 952053ade17..d5cc4be6d6c 100644 --- a/net/vtun/Makefile +++ b/net/vtun/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.27 2004/04/11 07:27:22 snj Exp $ +# $NetBSD: Makefile,v 1.28 2004/09/06 07:00:29 cjs Exp $ DISTNAME= vtun-2.6 -PKGREVISION= 4 +PKGREVISION= 5 CATEGORIES= net MASTER_SITES= http://vtun.sourceforge.net/ diff --git a/net/vtun/distinfo b/net/vtun/distinfo index b2ee320b0c2..a769723c0af 100644 --- a/net/vtun/distinfo +++ b/net/vtun/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.7 2003/10/27 16:55:32 hubertf Exp $ +$NetBSD: distinfo,v 1.8 2004/09/06 07:00:29 cjs Exp $ SHA1 (vtun-2.6.tar.gz) = ba6474a551856a7bb55b4cc21d858b8275a2e610 Size (vtun-2.6.tar.gz) = 95637 bytes @@ -6,3 +6,4 @@ SHA1 (vtun-26to30.patch) = 0f37b0d19e0df2cbe9153d74fa93d2a139e19583 Size (vtun-26to30.patch) = 338255 bytes SHA1 (patch-aa) = 88e8f9bec1cfd3fe9baf95fd870d3b94ff120aba SHA1 (patch-ab) = e1891ef0c50ef79ee05967e06e110ce64891ab0a +SHA1 (patch-ac) = 26a0d9eb062618c19e245cab959dbf198c0cae48 diff --git a/net/vtun/patches/patch-ac b/net/vtun/patches/patch-ac new file mode 100644 index 00000000000..ee76d40e2ba --- /dev/null +++ b/net/vtun/patches/patch-ac @@ -0,0 +1,13 @@ +$NetBSD: patch-ac,v 1.1 2004/09/06 07:00:29 cjs Exp $ + +--- auth.c.orig 2004-09-06 15:52:51.000000000 +0900 ++++ auth.c 2004-09-06 15:53:30.000000000 +0900 +@@ -589,7 +589,7 @@ + + response_to_chal (chalsrv, h, chal_res, chal_resh); + +- print_p (fd, "OK RESPSRV: %s %s\n", cl2cs (chal_resh, VTUN_RESP_HASH_SIZE)); ++ print_p (fd, "OK RESPSRV: %s\n", cl2cs (chal_resh, VTUN_RESP_HASH_SIZE)); + stage = ST_CHAL_CLI; + continue; + } |