From 38930db3c455f2ca33ac528c63b299895f146aba Mon Sep 17 00:00:00 2001 From: Mark Newton Date: Tue, 14 Mar 2000 14:19:17 +0000 Subject: Fix the case where username validity test would incorrectly fail if the specified username contained uppercase alphabetics. PR: bin/17372 --- adduser/rmuser.perl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'adduser/rmuser.perl') diff --git a/adduser/rmuser.perl b/adduser/rmuser.perl index 0e4296a..67dfa33 100644 --- a/adduser/rmuser.perl +++ b/adduser/rmuser.perl @@ -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"; -- cgit v1.2.3-56-ge451