diff options
author | Thierry Vignaud <tv@mageia.org> | 2012-10-18 20:50:46 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mageia.org> | 2012-10-18 20:50:46 +0000 |
commit | b9626dc4aaf5dfce1b8cf01dee5facb4b5791df8 (patch) | |
tree | 52e617ab3c7e8667df5af4fa2864c4d0b3ad594a /sshd_wizard | |
parent | 9e1b1f92fd64c8a148d523a0bdeb675b596b4d33 (diff) | |
download | drakwizard-b9626dc4aaf5dfce1b8cf01dee5facb4b5791df8.tar drakwizard-b9626dc4aaf5dfce1b8cf01dee5facb4b5791df8.tar.gz drakwizard-b9626dc4aaf5dfce1b8cf01dee5facb4b5791df8.tar.bz2 drakwizard-b9626dc4aaf5dfce1b8cf01dee5facb4b5791df8.tar.xz drakwizard-b9626dc4aaf5dfce1b8cf01dee5facb4b5791df8.zip |
style: '}' just before 'else/elsif'
Diffstat (limited to 'sshd_wizard')
-rwxr-xr-x | sshd_wizard/Sshd.pm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sshd_wizard/Sshd.pm b/sshd_wizard/Sshd.pm index cac703d8..99c524cd 100755 --- a/sshd_wizard/Sshd.pm +++ b/sshd_wizard/Sshd.pm @@ -96,9 +96,10 @@ $o->{pages} = { }, post => sub { if ($o->{var}{wiz_type} == 2) { - return 'auth_options' } - elsif ($o->{var}{wiz_type} == 1) { - return 'summary' } + return 'auth_options'; + } elsif ($o->{var}{wiz_type} == 1) { + return 'summary'; + } }, next => 'auth_options', }, |