summaryrefslogtreecommitdiff
path: root/pp_sys.c
diff options
context:
space:
mode:
authorSlaven Rezic <slaven@rezic.de>2002-10-14 11:37:18 +0200
committerhv <hv@crypt.org>2002-10-20 13:43:56 +0000
commit6143965086c75022cc1d4d1f3746302780985947 (patch)
treef9a4b4f0d94b5aafb597c56ec0555a888c3ad7fc /pp_sys.c
parentdf68b396123fb8eeaeb7770f8e4d190067a4d6e2 (diff)
downloadperl-6143965086c75022cc1d4d1f3746302780985947.tar.gz
Re: [perl #17892] Perl's mkdir() doesn't remove trailing slashes
Message-ID: <8765w5wjwx.fsf@vran.herceg.de> p4raw-id: //depot/perl@18036
Diffstat (limited to 'pp_sys.c')
-rw-r--r--pp_sys.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pp_sys.c b/pp_sys.c
index 0245a35487..8e03168e31 100644
--- a/pp_sys.c
+++ b/pp_sys.c
@@ -3711,7 +3711,7 @@ PP(pp_mkdir)
* -d, chdir(), chmod(), chown(), chroot(), fcntl()?,
* (mkdir()), opendir(), rename(), rmdir(), stat(). --jhi */
if (len > 1 && tmps[len-1] == '/') {
- while (tmps[len] == '/' && len > 1)
+ while (tmps[len-1] == '/' && len > 1)
len--;
tmps = savepvn(tmps, len);
copy = TRUE;