summaryrefslogtreecommitdiff
path: root/archivers/gtar-base/patches
diff options
context:
space:
mode:
authortonnerre <tonnerre@pkgsrc.org>2008-04-02 22:03:07 +0000
committertonnerre <tonnerre@pkgsrc.org>2008-04-02 22:03:07 +0000
commit07fcbb6ceee7ffa90f974539635f3f8eefcfbe86 (patch)
treec725cb82dea1a770a50b13dc68a888b069efc333 /archivers/gtar-base/patches
parentbb1742f7196e3977d6375ddc2e1863f8a5ba2d04 (diff)
downloadpkgsrc-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/patches')
-rw-r--r--archivers/gtar-base/patches/patch-ak4
1 files changed, 2 insertions, 2 deletions
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;