diff options
author | Niels Provos <provos@cvs.openbsd.org> | 1999-02-04 19:38:40 +0000 |
---|---|---|
committer | Niels Provos <provos@cvs.openbsd.org> | 1999-02-04 19:38:40 +0000 |
commit | 0a065ec75a7dd9b2c7bd84bb8c2e036a3364186c (patch) | |
tree | 6ca7dda26531086aa0fc3d4647d4e201f986c939 /usr.sbin | |
parent | c6af085840870d7f7edbaf12573a23dace86afa1 (diff) |
allow higher uids.
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/adduser/adduser.perl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/adduser/adduser.perl b/usr.sbin/adduser/adduser.perl index a25f66bc6f7..02ec4f400b7 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.14 1999/01/18 03:05:48 millert Exp $ +# $OpenBSD: adduser.perl,v 1.15 1999/02/04 19:38:39 provos Exp $ # # Copyright (c) 1995-1996 Wolfram Schneider <wosch@FreeBSD.org>. Berlin. # All rights reserved. @@ -93,7 +93,7 @@ sub variables { $defaultgroup = $group_uniq;# login groupname, $group_uniq means username $uid_start = 1000; # new users get this uid - $uid_end = 32000; # max. uid + $uid_end = 2147483648; # max. uid # global variables # passwd @@ -1447,7 +1447,7 @@ sub config_write { print C <<EOF; # -# $OpenBSD: adduser.perl,v 1.14 1999/01/18 03:05:48 millert Exp $ +# $OpenBSD: adduser.perl,v 1.15 1999/02/04 19:38:39 provos Exp $ # $config - automatic generated by adduser(8) # # Note: adduser read *and* write this file. |