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/09/04 13:24:29 UTC

svn commit: r691969 - /spamassassin/trunk/build/automc/mail_freqs_for_changed_rules

Author: jm
Date: Thu Sep  4 04:24:29 2008
New Revision: 691969

URL: http://svn.apache.org/viewvc?rev=691969&view=rev
Log:
no need for this to require /tmpfs

Modified:
    spamassassin/trunk/build/automc/mail_freqs_for_changed_rules

Modified: spamassassin/trunk/build/automc/mail_freqs_for_changed_rules
URL: http://svn.apache.org/viewvc/spamassassin/trunk/build/automc/mail_freqs_for_changed_rules?rev=691969&r1=691968&r2=691969&view=diff
==============================================================================
--- spamassassin/trunk/build/automc/mail_freqs_for_changed_rules (original)
+++ spamassassin/trunk/build/automc/mail_freqs_for_changed_rules Thu Sep  4 04:24:29 2008
@@ -29,7 +29,7 @@
 
 # ---------------------------------------------------------------------------
 # see if we've already mailed about that rev
-if (open (LAST, "</tmpfs/mail_freqs.log")) {
+if (open (LAST, "</tmp/mail_freqs.log")) {
   my $lastline;
   while (<LAST>) { $lastline = $_; }
   close LAST;
@@ -165,9 +165,9 @@
 # ---------------------------------------------------------------------------
 # log it, so we don't mail about that rev again
 
-open (LOG, ">>/tmpfs/mail_freqs.log");
+open (LOG, ">>/tmp/mail_freqs.log");
 print LOG "r=$lcrev\n";
-close LOG or warn "failed to write to /tmpfs/mail_freqs.log";
+close LOG or warn "failed to write to /tmp/mail_freqs.log";
 
 exit;