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 2004/04/25 08:44:08 UTC

svn commit: rev 10246 - incubator/spamassassin/trunk/lib/Mail/SpamAssassin/BayesStore

Author: parker
Date: Sat Apr 24 23:44:07 2004
New Revision: 10246

Modified:
   incubator/spamassassin/trunk/lib/Mail/SpamAssassin/BayesStore/SQL.pm
Log:
remove warning

Modified: incubator/spamassassin/trunk/lib/Mail/SpamAssassin/BayesStore/SQL.pm
==============================================================================
--- incubator/spamassassin/trunk/lib/Mail/SpamAssassin/BayesStore/SQL.pm	(original)
+++ incubator/spamassassin/trunk/lib/Mail/SpamAssassin/BayesStore/SQL.pm	Sat Apr 24 23:44:07 2004
@@ -259,9 +259,9 @@
   }
 
   # Do the expire
-  my $sql = "DELETE from bayes_token WHERE username = ? and atime < ?";
+  $sql = "DELETE from bayes_token WHERE username = ? and atime < ?";
 
-  my $rows = $self->{_dbh}->do($sql, undef, $self->{_username}, $too_old);
+  $rows = $self->{_dbh}->do($sql, undef, $self->{_username}, $too_old);
 
   unless (defined($rows)) {
     dbg("bayes: actual_expire: SQL Error: ".$self->{_dbh}->errstr());