diff options
author | mtm <mtm@FreeBSD.org> | 2007-04-12 07:38:26 +0000 |
---|---|---|
committer | mtm <mtm@FreeBSD.org> | 2007-04-12 07:38:26 +0000 |
commit | 672487645c1eb1c5f1264f43264a9d0d2008bbc0 (patch) | |
tree | e7a94ccd65dc570c28588fabeabd527a740cde4b /usr.sbin/adduser | |
parent | 73a329aba9ad65cca9c77c74aeb6b147e8e9a191 (diff) | |
download | FreeBSD-src-672487645c1eb1c5f1264f43264a9d0d2008bbc0.zip FreeBSD-src-672487645c1eb1c5f1264f43264a9d0d2008bbc0.tar.gz |
Errm... I don't see how rev. 1.26 could have possibly worked or been tested.
Fix it for real.
Submitted by: Johnny Lee <johnny@bmtk.com>
MFC After: 2 weeks
Diffstat (limited to 'usr.sbin/adduser')
-rw-r--r-- | usr.sbin/adduser/adduser.sh | 25 |
1 files changed, 13 insertions, 12 deletions
diff --git a/usr.sbin/adduser/adduser.sh b/usr.sbin/adduser/adduser.sh index 7097caf..5b970dc 100644 --- a/usr.sbin/adduser/adduser.sh +++ b/usr.sbin/adduser/adduser.sh @@ -598,19 +598,20 @@ input_from_file() { case "$fileline" in \#*|'') ;; - esac - - get_user || continue - get_gecos - get_uid - get_logingroup - get_class - get_shell - get_homedir - get_password - get_expire_dates + *) + get_user || continue + get_gecos + get_uid + get_logingroup + get_class + get_shell + get_homedir + get_password + get_expire_dates - add_user + add_user + ;; + esac done } |