diff options
author | tonnerre <tonnerre@pkgsrc.org> | 2008-04-02 22:03:07 +0000 |
---|---|---|
committer | tonnerre <tonnerre@pkgsrc.org> | 2008-04-02 22:03:07 +0000 |
commit | 07fcbb6ceee7ffa90f974539635f3f8eefcfbe86 (patch) | |
tree | c725cb82dea1a770a50b13dc68a888b069efc333 /archivers/gtar-base | |
parent | bb1742f7196e3977d6375ddc2e1863f8a5ba2d04 (diff) | |
download | pkgsrc-07fcbb6ceee7ffa90f974539635f3f8eefcfbe86.tar.gz |
Fix extraneous semicolon in gtar-base which slipped into the patch
before commit. This will unbrick archive/gtar-base.
Approved-by: tnn
Diffstat (limited to 'archivers/gtar-base')
-rw-r--r-- | archivers/gtar-base/Makefile | 4 | ||||
-rw-r--r-- | archivers/gtar-base/distinfo | 4 | ||||
-rw-r--r-- | archivers/gtar-base/patches/patch-ak | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/archivers/gtar-base/Makefile b/archivers/gtar-base/Makefile index 98049ca7a64..3048c179211 100644 --- a/archivers/gtar-base/Makefile +++ b/archivers/gtar-base/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.60 2008/03/31 00:39:38 tonnerre Exp $ +# $NetBSD: Makefile,v 1.61 2008/04/02 22:03:07 tonnerre Exp $ DISTNAME= tar-1.15.1 PKGNAME= gtar-base-1.15.1 -PKGREVISION= 5 +PKGREVISION= 6 SVR4_PKGNAME= gtarb CATEGORIES= archivers MASTER_SITES= ${MASTER_SITE_GNU:=tar/} diff --git a/archivers/gtar-base/distinfo b/archivers/gtar-base/distinfo index 7b243cb7cd3..4ca26d2022f 100644 --- a/archivers/gtar-base/distinfo +++ b/archivers/gtar-base/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.20 2008/03/31 00:39:38 tonnerre Exp $ +$NetBSD: distinfo,v 1.21 2008/04/02 22:03:07 tonnerre Exp $ SHA1 (tar-1.15.1.tar.gz) = 21574ae5d39b698f7f577e2cecc91a5ec89b659c RMD160 (tar-1.15.1.tar.gz) = 83f35ee090d05f0865ebd9915bbd1b649a6555c5 @@ -13,4 +13,4 @@ SHA1 (patch-ag) = 39fd6e84665a632258c722a35359713a1e194287 SHA1 (patch-ah) = d8532a99bf2bd0c35a9d994101fbd722f52c9ead SHA1 (patch-ai) = 9e065a4bbe3fcaee7e08a53b64e863b8fbd0d32a SHA1 (patch-aj) = 409760785d3a0e12175760f2f71e192c3dd1ef52 -SHA1 (patch-ak) = 18fd849db1ea337f38e7ed7e7fac73b85566325a +SHA1 (patch-ak) = 0bc0bae9d39eafdc6a54a59708e01063b9e41497 diff --git a/archivers/gtar-base/patches/patch-ak b/archivers/gtar-base/patches/patch-ak index de9981bd692..4829916bb5c 100644 --- a/archivers/gtar-base/patches/patch-ak +++ b/archivers/gtar-base/patches/patch-ak @@ -1,4 +1,4 @@ -$NetBSD: patch-ak,v 1.1 2008/03/31 00:39:38 tonnerre Exp $ +$NetBSD: patch-ak,v 1.2 2008/04/02 22:03:07 tonnerre Exp $ Fix directory traversal vulnerability (CVE-2007-4131). @@ -9,7 +9,7 @@ Fix directory traversal vulnerability (CVE-2007-4131). return 1; - do -+ while (! ISSLASH (*p)); ++ while (! ISSLASH (*p)) { if (! *p++) return 0; |