summaryrefslogtreecommitdiff
path: root/fml/lib/FML/Process
diff options
context:
space:
mode:
authorfukachan <fukachan>2003-10-18 07:32:08 +0000
committerfukachan <fukachan>2003-10-18 07:32:08 +0000
commit9481e636aea8aaf4dfcc003ff81aeec9e08197c3 (patch)
tree7a82d61b1282f7e503f36d8d712c07048e469628 /fml/lib/FML/Process
parent5acf6a9726db1e4823766a1df49e79ea9f52a376 (diff)
downloadfml8-9481e636aea8aaf4dfcc003ff81aeec9e08197c3.tar.gz
fml8-9481e636aea8aaf4dfcc003ff81aeec9e08197c3.tar.bz2
fml8-9481e636aea8aaf4dfcc003ff81aeec9e08197c3.zip
default_file_mode -> file_default_mode
default_directory_mode -> directory_default_mode move definitions from basic.cf to file.cf.
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 0773def5..54af9117 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.88 2003/10/16 03:50:07 fukachan Exp $
+# $FML: Utils.pm,v 1.89 2003/10/16 14:05:26 fukachan Exp $
#
package FML::Process::Utils;
@@ -280,7 +280,7 @@ sub mkdir
{
my ($curproc, $dir, $mode) = @_;
my $config = $curproc->config();
- my $dirmode = $config->{ default_directory_mode } || '0700';
+ my $dirmode = $config->{ directory_default_mode } || '0700';
# back up umask
my $curmask = umask( 077 ); # full open for readability