[PATCH] Command.pm, promoted strictures to 1st line of code
[email protected] (Matt Simerson)
| Newsgroups | perl.qpsmtpd |
|---|---|
| Message-ID | <[email protected]> |
Command.pm, promoted strictures to 1st line of code
---
lib/Qpsmtpd/Command.pm | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/lib/Qpsmtpd/Command.pm b/lib/Qpsmtpd/Command.pm
index d6a722e..e48c0f2 100644
--- a/lib/Qpsmtpd/Command.pm
+++ b/lib/Qpsmtpd/Command.pm
@@ -53,10 +53,11 @@ Inside a plugin
=cut
+use strict;
+
use Qpsmtpd::Constants;
use vars qw(@ISA);
@ISA = qw(Qpsmtpd::SMTP);
-use strict;
sub parse {
my ($me,$cmd,$line,$sub) = @_;
--
1.7.9.6