You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spamassassin.apache.org by fe...@apache.org on 2004/10/31 02:52:30 UTC

svn commit: rev 56099 - spamassassin/trunk/lib/Mail/SpamAssassin

Author: felicity
Date: Sat Oct 30 17:52:29 2004
New Revision: 56099

Modified:
   spamassassin/trunk/lib/Mail/SpamAssassin/Constants.pm
Log:
when converting from scan to run internal format, AI_TIME_UNKNOWN goes from signed to unsigned, so it's not properly propagated.  change value to 0, which won't occur in normal usage.

Modified: spamassassin/trunk/lib/Mail/SpamAssassin/Constants.pm
==============================================================================
--- spamassassin/trunk/lib/Mail/SpamAssassin/Constants.pm	(original)
+++ spamassassin/trunk/lib/Mail/SpamAssassin/Constants.pm	Sat Oct 30 17:52:29 2004
@@ -217,6 +217,6 @@
 # date makes the message useful or not, we need to mark it so that in the
 # second pass (when the message is actually read + processed) the received
 # date is calculated.  this value signifies "unknown" from the first pass.
-use constant AI_TIME_UNKNOWN => -1;
+use constant AI_TIME_UNKNOWN => 0;
 
 1;