remove $plugin defined twice warning

git-svn-id: https://svn.perl.org/qpsmtpd/trunk@137 958fd67b-6ff1-0310-b445-bb7760255be9
This commit is contained in:
Ask Bjørn Hansen 2003-04-15 17:50:45 +00:00
parent 3352c379ff
commit 3c80ae667f

View File

@ -99,7 +99,7 @@ sub load_plugins {
for my $plugin (@plugins) {
$self->log(7, "Loading $plugin");
my ($plugin, @args) = split /\s+/, $plugin;
($plugin, my @args) = split /\s+/, $plugin;
my $plugin_name = $plugin;