summaryrefslogtreecommitdiff
path: root/pl/makedir.pl
diff options
context:
space:
mode:
Diffstat (limited to 'pl/makedir.pl')
-rw-r--r--pl/makedir.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/pl/makedir.pl b/pl/makedir.pl
index a54dd47..37b9253 100644
--- a/pl/makedir.pl
+++ b/pl/makedir.pl
@@ -1,4 +1,4 @@
-;# $Id: makedir.pl 1 2006-08-24 12:32:52Z rmanfredi $
+;# $Id$
;#
;# Copyright (c) 1991-1997, 2004-2006, Raphael Manfredi
;#
@@ -22,7 +22,7 @@ sub makedir {
local($dir) = $_;
if (!-d && $_ ne '') {
# Make dirname first
- do makedir($_) if s|(.*)/.*|\1|;
+ &makedir($_) if s|(.*)/.*|\1|;
mkdir($dir, 0700) if ! -d $dir;
}
}