Mailing List Archive

svn commit: r438949 - /spamassassin/trunk/lib/Mail/SpamAssassin/PerMsgStatus.pm
Author: jm
Date: Thu Aug 31 08:02:45 2006
New Revision: 438949

URL: http://svn.apache.org/viewvc?rev=438949&view=rev
Log:
minor tidy: clean up two references to a renamed cache hash that hadn't been updated

Modified:
spamassassin/trunk/lib/Mail/SpamAssassin/PerMsgStatus.pm

Modified: spamassassin/trunk/lib/Mail/SpamAssassin/PerMsgStatus.pm
URL: http://svn.apache.org/viewvc/spamassassin/trunk/lib/Mail/SpamAssassin/PerMsgStatus.pm?rev=438949&r1=438948&r2=438949&view=diff
==============================================================================
--- spamassassin/trunk/lib/Mail/SpamAssassin/PerMsgStatus.pm (original)
+++ spamassassin/trunk/lib/Mail/SpamAssassin/PerMsgStatus.pm Thu Aug 31 08:02:45 2006
@@ -83,7 +83,7 @@
'subtest_names_hit' => [ ],
'spamd_result_log_items' => [ ],
'tests_already_hit' => { },
- 'hdr_cache' => { },
+ 'c' => { },
'rule_errors' => 0,
'disable_auto_learning' => 0,
'auto_learn_status' => undef,
@@ -247,7 +247,7 @@

# now that we've finished checking the mail, clear out this cache
# to avoid unforeseen side-effects.
- $self->{hdr_cache} = { };
+ $self->{c} = { };

# Round the score to 3 decimal places to avoid rounding issues
# We assume required_score to be properly rounded already.