summaryrefslogtreecommitdiff
path: root/fml/lib/FML/Process
diff options
context:
space:
mode:
authorfukachan <fukachan>2003-09-02 09:18:45 +0000
committerfukachan <fukachan>2003-09-02 09:18:45 +0000
commite8bfae23dd44ccad1533e8658b9bb0eb76891fd0 (patch)
tree556faf48f091c539dc4e44bc1c870d8b3b6b18c3 /fml/lib/FML/Process
parent7229282bb2b3e700542a09961f2ebc6c6b625a85 (diff)
downloadfml8-e8bfae23dd44ccad1533e8658b9bb0eb76891fd0.tar.gz
fml8-e8bfae23dd44ccad1533e8658b9bb0eb76891fd0.tar.bz2
fml8-e8bfae23dd44ccad1533e8658b9bb0eb76891fd0.zip
bug fix wrong lvalue
Diffstat (limited to 'fml/lib/FML/Process')
-rw-r--r--fml/lib/FML/Process/Calendar.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/fml/lib/FML/Process/Calendar.pm b/fml/lib/FML/Process/Calendar.pm
index 0d59c505..e8bee1b2 100644
--- a/fml/lib/FML/Process/Calendar.pm
+++ b/fml/lib/FML/Process/Calendar.pm
@@ -3,7 +3,7 @@
# Copyright (C) 2002,2003 Ken'ichi Fukamachi
# All rights reserved.
#
-# $FML: Calendar.pm,v 1.4 2003/08/23 04:35:38 fukachan Exp $
+# $FML: Calendar.pm,v 1.5 2003/08/29 15:34:06 fukachan Exp $
#
package FML::Process::Calendar;
@@ -72,7 +72,7 @@ sub prepare
# load default configurations.
use FML::Config;
- $curproc->config() = new FML::Config;
+ $curproc->{ config } = new FML::Config;
$curproc->load_config_files( $args->{ cf_list } );
}