summaryrefslogtreecommitdiff
path: root/fml/lib/FML/Process
diff options
context:
space:
mode:
authorfukachan <fukachan>2003-09-05 09:01:26 +0000
committerfukachan <fukachan>2003-09-05 09:01:26 +0000
commit65f71ba6d9d2e78de7bef0ee12854cf13e19f39b (patch)
tree84973e001898bbf89a5976e5cdf4385482a33ae3 /fml/lib/FML/Process
parent5a684eef4b3d3ef878114be0838d7a16197996f2 (diff)
downloadfml8-65f71ba6d9d2e78de7bef0ee12854cf13e19f39b.tar.gz
fml8-65f71ba6d9d2e78de7bef0ee12854cf13e19f39b.tar.bz2
fml8-65f71ba6d9d2e78de7bef0ee12854cf13e19f39b.zip
escape $curproc in eval
Diffstat (limited to 'fml/lib/FML/Process')
-rw-r--r--fml/lib/FML/Process/Utils.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/fml/lib/FML/Process/Utils.pm b/fml/lib/FML/Process/Utils.pm
index 43024293..60d05cb7 100644
--- a/fml/lib/FML/Process/Utils.pm
+++ b/fml/lib/FML/Process/Utils.pm
@@ -4,7 +4,7 @@
# All rights reserved. This program is free software; you can
# redistribute it and/or modify it under the same terms as Perl itself.
#
-# $FML: Utils.pm,v 1.75 2003/08/29 15:34:09 fukachan Exp $
+# $FML: Utils.pm,v 1.76 2003/08/29 15:42:03 fukachan Exp $
#
package FML::Process::Utils;
@@ -354,7 +354,7 @@ sub _mkpath_str
use File::Path;
mkpath([ \$dir ], 0, $mode);
chmod $mode, \$dir;
- $curproc->log(\"mkdirhier \$dir mode=$mode\");
+ \$curproc->log(\"mkdirhier \$dir mode=$mode\");
};
$curproc->logerror($@) if $@;
}