summaryrefslogtreecommitdiffstats
path: root/usr.sbin/adduser/adduser.perl
diff options
context:
space:
mode:
authorchris <chris@openbsd.org>2001-01-31 21:12:58 +0000
committerchris <chris@openbsd.org>2001-01-31 21:12:58 +0000
commit8bdfb18d90eea68a19ed71d88d4a9c7d13833eba (patch)
treef4b89c983e00da6389fdb46a2e1009098ca83737 /usr.sbin/adduser/adduser.perl
parentReflect changes in utmp.h (diff)
downloadwireguard-openbsd-8bdfb18d90eea68a19ed71d88d4a9c7d13833eba.tar.xz
wireguard-openbsd-8bdfb18d90eea68a19ed71d88d4a9c7d13833eba.zip
32 character user names
Diffstat (limited to 'usr.sbin/adduser/adduser.perl')
-rw-r--r--usr.sbin/adduser/adduser.perl8
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.sbin/adduser/adduser.perl b/usr.sbin/adduser/adduser.perl
index b800c63f94b..65234401254 100644
--- a/usr.sbin/adduser/adduser.perl
+++ b/usr.sbin/adduser/adduser.perl
@@ -1,6 +1,6 @@
#!/usr/bin/perl
#
-# $OpenBSD: adduser.perl,v 1.27 2000/12/30 06:43:24 angelos Exp $
+# $OpenBSD: adduser.perl,v 1.28 2001/01/31 21:12:58 chris Exp $
#
# Copyright (c) 1995-1996 Wolfram Schneider <wosch@FreeBSD.org>. Berlin.
# All rights reserved.
@@ -89,7 +89,7 @@ sub variables {
$group = "/etc/group";
$pwd_mkdb = "pwd_mkdb -p"; # program for building passwd database
$encryptionmethod = "blowfish";
- $rcsid = '$OpenBSD: adduser.perl,v 1.27 2000/12/30 06:43:24 angelos Exp $';
+ $rcsid = '$OpenBSD: adduser.perl,v 1.28 2001/01/31 21:12:58 chris Exp $';
# List of directories where shells located
@path = ('/bin', '/usr/bin', '/usr/local/bin');
@@ -366,8 +366,8 @@ sub new_users_name {
while(1) {
$name = &confirm_list("Enter username", 1, "a-z0-9_-", "");
- if (length($name) > 8) {
- warn "Username is longer than 8 chars\a\n";
+ if (length($name) > 32) {
+ warn "Username is longer than 32 characters\a\n";
next;
}
last if (&new_users_name_valid($name) eq $name);