diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-08-11 02:22:15 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-08-11 02:22:15 +0000 |
commit | 60c5be6245a02d6f09aebd2d257716a578bc90c3 (patch) | |
tree | 9deeba176c0a0e0271bac780541305e799d668e9 /perl-install/install_steps_interactive.pm | |
parent | 07d2e1e1e8da3b23c77c741236312c63485c550b (diff) | |
download | drakx-60c5be6245a02d6f09aebd2d257716a578bc90c3.tar drakx-60c5be6245a02d6f09aebd2d257716a578bc90c3.tar.gz drakx-60c5be6245a02d6f09aebd2d257716a578bc90c3.tar.bz2 drakx-60c5be6245a02d6f09aebd2d257716a578bc90c3.tar.xz drakx-60c5be6245a02d6f09aebd2d257716a578bc90c3.zip |
perl_checker compliance
Diffstat (limited to 'perl-install/install_steps_interactive.pm')
-rw-r--r-- | perl-install/install_steps_interactive.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index 6c7ba0e49..ebf60d96f 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -1136,9 +1136,9 @@ sub setRootPassword { focus_first => 1, callbacks => { complete => sub { - $sup->{password} eq $sup->{password2} or $o->ask_warn('', [ N("The passwords do not match"), N("Please try again") ]), return (1,0); + $sup->{password} eq $sup->{password2} or $o->ask_warn('', [ N("The passwords do not match"), N("Please try again") ]), return 1,0; length $sup->{password} < 2 * $o->{security} - and $o->ask_warn('', N("This password is too short (it must be at least %d characters long)", 2 * $o->{security})), return (1,0); + and $o->ask_warn('', N("This password is too short (it must be at least %d characters long)", 2 * $o->{security})), return 1,0; return 0 } } }, [ { label => N("Password"), val => \$sup->{password}, hidden => 1 }, |