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

svn commit: r170852 - /spamassassin/trunk/t/regexp_valid.t

Author: parker
Date: Wed May 18 18:24:06 2005
New Revision: 170852

URL: http://svn.apache.org/viewcvs?rev=170852&view=rev
Log:
Keep from writing out extra file to disk

Modified:
    spamassassin/trunk/t/regexp_valid.t

Modified: spamassassin/trunk/t/regexp_valid.t
URL: http://svn.apache.org/viewcvs/spamassassin/trunk/t/regexp_valid.t?rev=170852&r1=170851&r2=170852&view=diff
==============================================================================
--- spamassassin/trunk/t/regexp_valid.t (original)
+++ spamassassin/trunk/t/regexp_valid.t Wed May 18 18:24:06 2005
@@ -35,7 +35,7 @@
 # create a file descriptior for logging STDERR
 # (we do not want warnings for regexps we know are invalid)
 my $fh = IO::File->new_tmpfile();
-open(LOGERR, ">".fileno($fh)) || die "Cannot create LOGERR temp file";
+open(LOGERR, ">&".fileno($fh)) || die "Cannot create LOGERR temp file";
 
 # quiet "used only once" warnings
 1 if *OLDERR;