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 2008/01/15 15:54:35 UTC

svn commit: r612128 - /spamassassin/trunk/masses/hit-frequencies

Author: jm
Date: Tue Jan 15 06:54:32 2008
New Revision: 612128

URL: http://svn.apache.org/viewvc?rev=612128&view=rev
Log:
bug 5788: overlap report has the container-contained relationship backwards

Modified:
    spamassassin/trunk/masses/hit-frequencies

Modified: spamassassin/trunk/masses/hit-frequencies
URL: http://svn.apache.org/viewvc/spamassassin/trunk/masses/hit-frequencies?rev=612128&r1=612127&r2=612128&view=diff
==============================================================================
--- spamassassin/trunk/masses/hit-frequencies (original)
+++ spamassassin/trunk/masses/hit-frequencies Tue Jan 15 06:54:32 2008
@@ -857,8 +857,8 @@
 
       } else {
         printf "  overlap %4s: %3d%% of %s hits also hit %s; %3d%% of %s hits also hit %s%s\n",
-                    $type, $ratio, $r2, $r1,
-                    $reverse_ratio, $r1, $r2,
+                    $type, $ratio, $r1, $r2,
+                    $reverse_ratio, $r2, $r1,
                     ($is_subrule ? ' (meta rule and subrule)' : '');
       }
     }