diff options
author | joerg <joerg> | 2010-08-13 18:57:36 +0000 |
---|---|---|
committer | joerg <joerg> | 2010-08-13 18:57:36 +0000 |
commit | d268f6c8ed603f78cd3b4ed219737cc0d0e0cddc (patch) | |
tree | 61f7857fb2bb367a99c81032820390b89581f50e /bootstrap | |
parent | 0d7da395f67cbc0950913876fb8e87e30eed25f0 (diff) | |
download | pkgsrc-d268f6c8ed603f78cd3b4ed219737cc0d0e0cddc.tar.gz |
Don't allow a prefix or other directory ending in /. Adresses PR 43754.
Diffstat (limited to 'bootstrap')
-rwxr-xr-x | bootstrap/bootstrap | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bootstrap/bootstrap b/bootstrap/bootstrap index 21bd8e06b55..ecfda6d9e2e 100755 --- a/bootstrap/bootstrap +++ b/bootstrap/bootstrap @@ -1,6 +1,6 @@ #! /bin/sh -# $NetBSD: bootstrap,v 1.157 2010/03/19 14:11:11 seanb Exp $ +# $NetBSD: bootstrap,v 1.158 2010/08/13 18:57:36 joerg Exp $ # # # Copyright (c) 2001-2002 Alistair G. Crooks. All rights reserved. @@ -316,6 +316,7 @@ checkarg_sane_absolute_path() { "") ;; # the default value will be used. *[!-A-Za-z0-9_./]*) die "ERROR: Invalid characters in path $1 (from $2)." ;; + */) die "ERROR: The argument to $2 must not end in /." ;; /*) ;; *) die "ERROR: The argument to $2 must be an absolute path." ;; esac |