Commit 4e00caf6 authored by preed%sigkill.com's avatar preed%sigkill.com

Bug 147480 - Lack of newlines when asking for password in checksetup.pl. Patch…

Bug 147480 - Lack of newlines when asking for password in checksetup.pl. Patch by jocuri@softhome.net (Vlad Dascalu), r=kiko, a=justdave
parent fa4b44c6
......@@ -3887,7 +3887,7 @@ if ($sth->rows == 0) {
if(! $pass1 ) {
print "\n\nIt's just plain stupid to not have a password. Try again!\n";
} elsif ( $pass1 !~ /^.{3,16}$/ ) {
print "The password must be 3-16 characters in length.";
print "\n\nThe password must be 3-16 characters in length.\n";
}
}
print "\nPlease retype the password to verify: ";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment