You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spamassassin.apache.org by si...@apache.org on 2007/12/31 19:08:47 UTC

svn commit: r607761 - /spamassassin/branches/3.2/sa-compile.raw

Author: sidney
Date: Mon Dec 31 10:08:46 2007
New Revision: 607761

URL: http://svn.apache.org/viewvc?rev=607761&view=rev
Log:
bug 5748: fix locale problem with use of external sort by not sorting because the sort was not needed anyway

Modified:
    spamassassin/branches/3.2/sa-compile.raw

Modified: spamassassin/branches/3.2/sa-compile.raw
URL: http://svn.apache.org/viewvc/spamassassin/branches/3.2/sa-compile.raw?rev=607761&r1=607760&r2=607761&view=diff
==============================================================================
--- spamassassin/branches/3.2/sa-compile.raw (original)
+++ spamassassin/branches/3.2/sa-compile.raw Mon Dec 31 10:08:46 2007
@@ -308,7 +308,7 @@
   my $force = 1;
   my $FILE = shift;
 
-  open(my $fh, "sort $FILE |") || die "open($FILE): $!";
+  open(my $fh, $FILE) || die "open($FILE): $!";
 # read ruleset name from the first line in the file
   my $ruleset_name;
   $_ = <$fh>;