Fix the case where username validity test would incorrectly fail if
the specified username contained uppercase alphabetics. PR: bin/17372
This commit is contained in:
parent
d137714f11
commit
44dfd6a858
@ -108,7 +108,7 @@ if ($#ARGV == 0) {
|
||||
# Username was given as a parameter
|
||||
$login_name = pop(@ARGV);
|
||||
die "Sorry, login name must contain alphanumeric characters only.\n"
|
||||
if ($login_name !~ /^[a-z0-9_][a-z0-9_\-]*$/);
|
||||
if ($login_name !~ /^[a-zA-Z0-9_]{1,}$/);
|
||||
} else {
|
||||
if ($affirm) {
|
||||
print STDERR "${whoami}: Error: -y option given without username!\n";
|
||||
|
Loading…
Reference in New Issue
Block a user