From 129ca56e2fe2b39ef3b323f3da08507ac6b34707 Mon Sep 17 00:00:00 2001 From: Matt Simerson Date: Sat, 23 Jun 2012 00:40:42 -0400 Subject: [PATCH] unrec: fixed variable assignment --- plugins/count_unrecognized_commands | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/count_unrecognized_commands b/plugins/count_unrecognized_commands index 3060e61..5cb6d69 100644 --- a/plugins/count_unrecognized_commands +++ b/plugins/count_unrecognized_commands @@ -22,7 +22,7 @@ use warnings; use Qpsmtpd::Constants; sub register { - my ($self, $qp ) = shift, shift; + my ($self, $qp ) = (shift, shift); $self->{_unrec_cmd_max} = shift || 4;