summaryrefslogtreecommitdiff
path: root/fml/lib/FML/Process/Configure.pm
diff options
context:
space:
mode:
authorfukachan <fukachan>2001-10-14 00:54:16 +0000
committerfukachan <fukachan>2001-10-14 00:54:16 +0000
commitf478fa5adfadad6209031c1e76fa18190fd27ef4 (patch)
tree37efdbb5f9dd452214de525c1075c6893a3d18a7 /fml/lib/FML/Process/Configure.pm
parentcb2235a14f6958dde5f1337c4bdf4beafb10759e (diff)
downloadfml8-f478fa5adfadad6209031c1e76fa18190fd27ef4.tar.gz
fml8-f478fa5adfadad6209031c1e76fa18190fd27ef4.tar.bz2
fml8-f478fa5adfadad6209031c1e76fa18190fd27ef4.zip
$optargs -> $command_args
Diffstat (limited to 'fml/lib/FML/Process/Configure.pm')
-rw-r--r--fml/lib/FML/Process/Configure.pm8
1 files changed, 4 insertions, 4 deletions
diff --git a/fml/lib/FML/Process/Configure.pm b/fml/lib/FML/Process/Configure.pm
index 788a8f82..5168d56a 100644
--- a/fml/lib/FML/Process/Configure.pm
+++ b/fml/lib/FML/Process/Configure.pm
@@ -4,7 +4,7 @@
# Copyright (C) 2000,2001 Ken'ichi Fukamachi
# All rights reserved.
#
-# $FML: Configure.pm,v 1.24 2001/07/15 12:02:12 fukachan Exp $
+# $FML: Configure.pm,v 1.25 2001/08/26 08:41:58 fukachan Exp $
#
package FML::Process::Configure;
@@ -145,7 +145,7 @@ C<@$argv> ( $argv = $args->{ ARGV } ).
C<Caution:>
C<$args> is passed from parrent libexec/loader.
-We construct a new struct C<$optargs> here to pass parameters
+We construct a new struct C<$command_args> here to pass parameters
to child objects.
C<FML::Command::$command> object takes them as arguments not pure
C<$args>. It is a little mess. Pay attention.
@@ -169,7 +169,7 @@ sub _makefml
my ($method, $ml_name, @options) = @$argv;
# arguments to pass off to each method
- my $optargs = {
+ my $command_args = {
command_mode => 'admin',
command => $method,
ml_name => $ml_name,
@@ -181,7 +181,7 @@ sub _makefml
# here we go
require FML::Command;
my $obj = new FML::Command;
- $obj->$method($curproc, $optargs);
+ $obj->$method($curproc, $command_args);
}