You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spamassassin.apache.org by jm...@apache.org on 2007/09/22 20:30:09 UTC

svn commit: r578470 - /spamassassin/trunk/masses/mass-check

Author: jm
Date: Sat Sep 22 11:30:08 2007
New Revision: 578470

URL: http://svn.apache.org/viewvc?rev=578470&view=rev
Log:
oops. obv packed values aren't what I meant to add

Modified:
    spamassassin/trunk/masses/mass-check

Modified: spamassassin/trunk/masses/mass-check
URL: http://svn.apache.org/viewvc/spamassassin/trunk/masses/mass-check?rev=578470&r1=578469&r2=578470&view=diff
==============================================================================
--- spamassassin/trunk/masses/mass-check (original)
+++ spamassassin/trunk/masses/mass-check Sat Sep 22 11:30:08 2007
@@ -1506,7 +1506,7 @@
   foreach ( @_ ) {
     my $length = pack("V", length $_);
     $fd->print($length.$_) || return 0;
-    $sent_bytes += $length + 4;
+    $sent_bytes += (length $_) + 4;
   }
 
   return 1;