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/09/08 19:19:11 UTC

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

Author: parker
Date: Wed Sep  8 10:19:09 2004
New Revision: 43544

Modified:
   spamassassin/trunk/lib/Mail/SpamAssassin/BayesStore/SQL.pm
Log:
Fix debug message

Modified: spamassassin/trunk/lib/Mail/SpamAssassin/BayesStore/SQL.pm
==============================================================================
--- spamassassin/trunk/lib/Mail/SpamAssassin/BayesStore/SQL.pm	(original)
+++ spamassassin/trunk/lib/Mail/SpamAssassin/BayesStore/SQL.pm	Wed Sep  8 10:19:09 2004
@@ -1099,7 +1099,7 @@
   my $rows = $self->{_dbh}->do($sql, undef, @bindings);
 
   unless (defined($rows)) {
-    dbg("bayes: tok_touch: SQL Error: ".$self->{_dbh}->errstr());
+    dbg("bayes: tok_touch_all: SQL Error: ".$self->{_dbh}->errstr());
     return 0;
   }
 
@@ -1117,7 +1117,7 @@
   $rows = $self->{_dbh}->do($sql, undef, $atime, $self->{_userid}, $atime);
 
   unless (defined($rows)) {
-    dbg("bayes: tok_touch: SQL Error: ".$self->{_dbh}->errstr());
+    dbg("bayes: tok_touch_all: SQL Error: ".$self->{_dbh}->errstr());
     return 0;
   }