diff options
| author | fukachan <fukachan> | 2002-03-18 15:22:36 +0000 |
|---|---|---|
| committer | fukachan <fukachan> | 2002-03-18 15:22:36 +0000 |
| commit | 455b3cfe6c5e76822bfafe04e2aabff9751c93d9 (patch) | |
| tree | 5346dfe617602f99d380726d5bf088fb6f5b4b50 /fml/lib/FML/Process | |
| parent | 7f995250e8aeba35457875b845eb04531e4763f2 (diff) | |
| download | fml8-455b3cfe6c5e76822bfafe04e2aabff9751c93d9.tar.gz fml8-455b3cfe6c5e76822bfafe04e2aabff9751c93d9.tar.bz2 fml8-455b3cfe6c5e76822bfafe04e2aabff9751c93d9.zip | |
define ml_domain() but same as default_domain() yet
Diffstat (limited to 'fml/lib/FML/Process')
| -rw-r--r-- | fml/lib/FML/Process/Utils.pm | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/fml/lib/FML/Process/Utils.pm b/fml/lib/FML/Process/Utils.pm index 6b6b2529..857ea07f 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.13 2002/02/24 08:23:59 fukachan Exp $ +# $FML: Utils.pm,v 1.14 2002/03/17 06:24:32 fukachan Exp $ # package FML::Process::Utils; @@ -176,6 +176,25 @@ sub command_line_options } +=head2 ml_domain() + +not yet implemenetd properly. +Anyway, return the default domain defined in /etc/fml/main.cf. + +=cut + + +# Descriptions: return my domain +# Arguments: OBJ($curproc) +# Side Effects: none +# Return Value: STR +sub ml_domain +{ + my ($curproc) = @_; + return $curproc->default_domain(); +} + + =head2 default_domain() return the default domain defined in /etc/fml/main.cf. |
