summaryrefslogtreecommitdiff
path: root/fml/lib/FML/Process/Kernel.pm
diff options
context:
space:
mode:
authorfukachan <fukachan>2002-07-15 15:27:13 +0000
committerfukachan <fukachan>2002-07-15 15:27:13 +0000
commit67ca162e475b706fe2c48bd0898b72b4e686e4e6 (patch)
treea013ae7a4399ffa230abe03fd1e4dd2ecf232119 /fml/lib/FML/Process/Kernel.pm
parent09aa33f70f3ee62223bab571f4e658ab23cf808b (diff)
downloadfml8-67ca162e475b706fe2c48bd0898b72b4e686e4e6.tar.gz
fml8-67ca162e475b706fe2c48bd0898b72b4e686e4e6.tar.bz2
fml8-67ca162e475b706fe2c48bd0898b72b4e686e4e6.zip
define the following access methods:
config() pcb() incoming_message_header() incoming_message_body() incoming_message() article_header() article_body() article_message() modified to use incoming_message_header() incoming_message_body() incoming_message() article_header() article_body() article_message().
Diffstat (limited to 'fml/lib/FML/Process/Kernel.pm')
-rw-r--r--fml/lib/FML/Process/Kernel.pm7
1 files changed, 3 insertions, 4 deletions
diff --git a/fml/lib/FML/Process/Kernel.pm b/fml/lib/FML/Process/Kernel.pm
index efb06ac3..554a2fd0 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.112 2002/07/14 04:13:58 fukachan Exp $
+# $FML: Kernel.pm,v 1.113 2002/07/14 15:15:29 fukachan Exp $
#
package FML::Process::Kernel;
@@ -363,9 +363,8 @@ sub simple_loop_check
{
my ($curproc, $args) = @_;
my $config = $curproc->{ config };
- my $r_msg = $curproc->{ incoming_message };
- my $header = $r_msg->{ header };
- my $match = 0;
+ my $header = $curproc->incoming_message_header();
+ my $match = 0;
RULES:
for my $rule (split(/\s+/, $config->{ header_loop_check_rules })) {