diff options
Diffstat (limited to 'postfix_wizard')
-rwxr-xr-x | postfix_wizard/Postfix.pm | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/postfix_wizard/Postfix.pm b/postfix_wizard/Postfix.pm index 75edee65..e443aa1c 100755 --- a/postfix_wizard/Postfix.pm +++ b/postfix_wizard/Postfix.pm @@ -283,10 +283,8 @@ $o->{pages} = { }; sub new { - my ($class, $_conf) = @_; - bless { - o => $o, - }, $class; + my ($class) = @_; + bless $o, $class; } sub check_sendmail { |