diff options
| author | fukachan <fukachan> | 2006-03-04 13:48:28 +0000 |
|---|---|---|
| committer | fukachan <fukachan> | 2006-03-04 13:48:28 +0000 |
| commit | 24acfd76bcca6a742dd3d12c07af8e2ae193f430 (patch) | |
| tree | 7c31c02b071e5702427542214385344aa483f3db /fml/lib/FML/Command/Admin/addpriv.pm | |
| parent | 80a851d319914b556899769706825eb9a9f5a27b (diff) | |
| download | fml8-24acfd76bcca6a742dd3d12c07af8e2ae193f430.tar.gz fml8-24acfd76bcca6a742dd3d12c07af8e2ae193f430.tar.bz2 fml8-24acfd76bcca6a742dd3d12c07af8e2ae193f430.zip | |
$command_args -> $command_context (OBJ), method style
Diffstat (limited to 'fml/lib/FML/Command/Admin/addpriv.pm')
| -rw-r--r-- | fml/lib/FML/Command/Admin/addpriv.pm | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/fml/lib/FML/Command/Admin/addpriv.pm b/fml/lib/FML/Command/Admin/addpriv.pm index f28255e5..a611cee4 100644 --- a/fml/lib/FML/Command/Admin/addpriv.pm +++ b/fml/lib/FML/Command/Admin/addpriv.pm @@ -1,10 +1,10 @@ #-*- perl -*- # -# Copyright (C) 2002,2003 Ken'ichi Fukamachi +# Copyright (C) 2002,2003,2005,2006 Ken'ichi Fukamachi # All rights reserved. This program is free software; you can # redistribute it and/or modify it under the same terms as Perl itself. # -# $FML: addpriv.pm,v 1.5 2003/12/31 03:49:16 fukachan Exp $ +# $FML: addpriv.pm,v 1.6 2003/12/31 04:08:43 fukachan Exp $ # package FML::Command::Admin::addpriv; @@ -18,13 +18,13 @@ use FML::Command::Admin::addadmin; # Descriptions: add a new remote administrator -# Arguments: OBJ($self) OBJ($curproc) HASH_REF($command_args) +# Arguments: OBJ($self) OBJ($curproc) OBJ($command_context) # Side Effects: forward request to addadmin module # Return Value: none sub process { - my ($self, $curproc, $command_args) = @_; - $self->SUPER::process($curproc, $command_args); + my ($self, $curproc, $command_context) = @_; + $self->SUPER::process($curproc, $command_context); } =head1 NAME @@ -49,7 +49,7 @@ Ken'ichi Fukamachi =head1 COPYRIGHT -Copyright (C) 2002,2003 Ken'ichi Fukamachi +Copyright (C) 2002,2003,2005,2006 Ken'ichi Fukamachi All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. |
