diff options
| author | fukachan <fukachan> | 2005-08-10 13:09:46 +0000 |
|---|---|---|
| committer | fukachan <fukachan> | 2005-08-10 13:09:46 +0000 |
| commit | 15cdcec34d9afb35db6d7167be27b668fda69b7e (patch) | |
| tree | a02b496f0b6a00c35969a6d97368d840f5bdb7a4 /fml/lib/FML/Process | |
| parent | 33512fe5b6bd26bff92a98a169b166f1d042a183 (diff) | |
| download | fml8-15cdcec34d9afb35db6d7167be27b668fda69b7e.tar.gz fml8-15cdcec34d9afb35db6d7167be27b668fda69b7e.tar.bz2 fml8-15cdcec34d9afb35db6d7167be27b668fda69b7e.zip | |
s/incoming_message_queue_clean_up/incoming_message_cleanup_queue/g;
Diffstat (limited to 'fml/lib/FML/Process')
| -rw-r--r-- | fml/lib/FML/Process/Flow.pm | 4 | ||||
| -rw-r--r-- | fml/lib/FML/Process/Kernel.pm | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/fml/lib/FML/Process/Flow.pm b/fml/lib/FML/Process/Flow.pm index 76a2b7bc..7aa279ed 100644 --- a/fml/lib/FML/Process/Flow.pm +++ b/fml/lib/FML/Process/Flow.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: Flow.pm,v 1.29 2005/06/04 08:49:10 fukachan Exp $ +# $FML: Flow.pm,v 1.30 2005/08/10 12:55:33 fukachan Exp $ # package FML::Process::Flow; @@ -106,7 +106,7 @@ sub ProcessStart # clean up temporary files $process->tmp_file_cleanup(); - $process->incoming_message_queue_clean_up(); + $process->incoming_message_cleanup_queue(); # debug $process->finalize(); diff --git a/fml/lib/FML/Process/Kernel.pm b/fml/lib/FML/Process/Kernel.pm index 9b17773d..11a8b878 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.261 2005/08/08 03:52:30 fukachan Exp $ +# $FML: Kernel.pm,v 1.262 2005/08/10 12:55:33 fukachan Exp $ # package FML::Process::Kernel; @@ -2725,7 +2725,7 @@ sub tmp_file_cleanup # Arguments: OBJ($curproc) # Side Effects: remove incoming queue. # Return Value: none -sub incoming_message_queue_clean_up +sub incoming_message_cleanup_queue { my ($curproc) = @_; my $config = $curproc->config(); @@ -3217,7 +3217,7 @@ sub exit_as_tempfail # clean up temporary files $curproc->tmp_file_cleanup(); - $curproc->incoming_message_queue_clean_up(); + $curproc->incoming_message_cleanup_queue(); # main. $curproc->logerror("exit(EX_TEMPFAIL) to retry later."); |
