You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spamassassin.apache.org by ms...@apache.org on 2004/02/19 03:05:21 UTC

svn commit: rev 6750 - incubator/spamassassin/trunk/lib/Mail/SpamAssassin

Author: mss
Date: Wed Feb 18 18:05:20 2004
New Revision: 6750

Modified:
   incubator/spamassassin/trunk/lib/Mail/SpamAssassin/PerMsgStatus.pm
Log:
*grmbl*


Modified: incubator/spamassassin/trunk/lib/Mail/SpamAssassin/PerMsgStatus.pm
==============================================================================
--- incubator/spamassassin/trunk/lib/Mail/SpamAssassin/PerMsgStatus.pm	(original)
+++ incubator/spamassassin/trunk/lib/Mail/SpamAssassin/PerMsgStatus.pm	Wed Feb 18 18:05:20 2004
@@ -875,7 +875,7 @@
   
   # Do some rounding tricks to avoid the 5.0!=5.0-phenomenon,
   # see <http://bugzilla.spamassassin.org/show_bug.cgi?id=2607>
-  return $score if $self->{is_spam} or $score <= $rscore;
+  return $score if $self->{is_spam} or $score < $rscore;
   return $rscore - 0.1;
 }