[svn:qpsmtpd] rev 412 - branches/high_perf/plugins

[email protected] 9 May 2005 13:41:11 -0000
Newsgroups perl.cvs.qpsmtpd
Message-ID <[email protected]>
Author: msergeant
Date: Mon May  9 06:41:10 2005
New Revision: 412

Modified:
   branches/high_perf/plugins/stats
Log:
Fix deny incrementing to use proper variables


Modified: branches/high_perf/plugins/stats
==============================================================================
--- branches/high_perf/plugins/stats	(original)
+++ branches/high_perf/plugins/stats	Mon May  9 06:41:10 2005
@@ -10,7 +10,7 @@
 }
 
 sub increment_deny {
-    my ($self, $level) = @_;
+    my ($self, $tran, $plugin, $level) = @_;
     
     if ($level == DENY or $level == DENY_DISCONNECT) {
         $Qpsmtpd::Stats::MAILS_REJECTED++;
@@ -28,4 +28,4 @@
     $Qpsmtpd::Stats::MAILS_RECEIVED++;
     
     return DECLINED;
-}
\ No newline at end of file
+}