diff options
| author | fukachan <fukachan> | 2004-03-13 10:29:46 +0000 |
|---|---|---|
| committer | fukachan <fukachan> | 2004-03-13 10:29:46 +0000 |
| commit | 62318e6f2ef21ea01483fc569dee0e199970e0c3 (patch) | |
| tree | 56117ef4d5630f49fd8b587ab97c50da46b23e38 /fml/lib/FML/Process/Kernel.pm | |
| parent | 6b9607f0b2311a782ba83131cf5253c060228066 (diff) | |
| download | fml8-62318e6f2ef21ea01483fc569dee0e199970e0c3.tar.gz fml8-62318e6f2ef21ea01483fc569dee0e199970e0c3.tar.bz2 fml8-62318e6f2ef21ea01483fc569dee0e199970e0c3.zip | |
use $curproc->allow_reply_message() to check if we should send back
messages.
Diffstat (limited to 'fml/lib/FML/Process/Kernel.pm')
| -rw-r--r-- | fml/lib/FML/Process/Kernel.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fml/lib/FML/Process/Kernel.pm b/fml/lib/FML/Process/Kernel.pm index 3e3ad31d..7cc013df 100644 --- a/fml/lib/FML/Process/Kernel.pm +++ b/fml/lib/FML/Process/Kernel.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: Kernel.pm,v 1.217 2004/03/12 11:45:51 fukachan Exp $ +# $FML: Kernel.pm,v 1.218 2004/03/13 06:03:24 fukachan Exp $ # package FML::Process::Kernel; @@ -1478,7 +1478,7 @@ sub _reply_message_queuein $curproc->caller_info($msg, caller) if $debug; # process running under MTA can handle reply messages by mail. - unless ($curproc->is_under_mta_process() || $myname eq 'loader') { + unless ($curproc->allow_reply_message()) { $curproc->logwarn("(debug) $myname disables reply_message()"); return; } |
