]> git.cameronkatri.com Git - pw-darwin.git/commitdiff
- Act according to the documentation (man page):
authorRobert Drehmel <robert@FreeBSD.org>
Thu, 28 Apr 2005 12:44:02 +0000 (12:44 +0000)
committerRobert Drehmel <robert@FreeBSD.org>
Thu, 28 Apr 2005 12:44:02 +0000 (12:44 +0000)
   When adding users from a preformatted file, do not exit
   silently when empty lines or lines starting with a '#'
   are encountered - ignore them instead.
 - Fix a spelling error in a comment.

PR: bin/80058

adduser/adduser.sh

index 0014e4c107996779d0d1b475d5d3f3f055644dec..a8622b93881fb13be346ed5110ffc463da0a8490 100644 (file)
@@ -588,7 +588,6 @@ input_from_file() {
        while read -r fileline ; do
                case "$fileline" in
                \#*|'')
-                       return 0
                        ;;
                esac
 
@@ -796,7 +795,7 @@ input_interactive() {
        return 0
 }
 
-#### END SUBROUTINE DEFENITION ####
+#### END SUBROUTINE DEFINITION ####
 
 THISCMD=`/usr/bin/basename $0`
 DEFAULTSHELL=/bin/sh