diff options
author | Olivier Blin <oblin@mandriva.org> | 2006-01-03 17:21:06 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.org> | 2006-01-03 17:21:06 +0000 |
commit | 039043dce270c730cd0880b30f18fd0665a8d5f9 (patch) | |
tree | 7fbc4332363731a88404cd2d9baacd721afdd548 /postfix_wizard | |
parent | 9518e6f02ba555d798877604c8f50daf44486f45 (diff) | |
download | drakwizard-039043dce270c730cd0880b30f18fd0665a8d5f9.tar drakwizard-039043dce270c730cd0880b30f18fd0665a8d5f9.tar.gz drakwizard-039043dce270c730cd0880b30f18fd0665a8d5f9.tar.bz2 drakwizard-039043dce270c730cd0880b30f18fd0665a8d5f9.tar.xz drakwizard-039043dce270c730cd0880b30f18fd0665a8d5f9.zip |
bless directly the wizard object instead of wrapping it in a hash
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 { |