]> git.cameronkatri.com Git - pw-darwin.git/commitdiff
Fix conjugation of exists and add full stops to the messages I changed.
authorDavid Malone <dwmalone@FreeBSD.org>
Sun, 11 Aug 2002 20:31:16 +0000 (20:31 +0000)
committerDavid Malone <dwmalone@FreeBSD.org>
Sun, 11 Aug 2002 20:31:16 +0000 (20:31 +0000)
PR: 38481
Submitted by: Kevin Kinsey <kadmin@elisha.daleco.biz>
MFC after: 1 week

adduser/adduser.perl

index 322bac6e254105b038df041876c037e4b1464f71..fb60253a28a261bd5943ea66ad791485c22597ee 100644 (file)
@@ -1035,7 +1035,7 @@ sub home_create {
     local($rootdir);
 
     if (-e "$homedir") {
-       warn "HOME Directory ``$homedir'' already exist\a\n";
+       warn "HOME directory ``$homedir'' already exists.\a\n";
        return 0;
     }
 
@@ -1101,7 +1101,7 @@ sub mkdir_home {
 
 
        if (-d $d) {
-           warn "Oops, $d already exist\n" if $verbose;
+           warn "Oops, $d already exists.\n" if $verbose;
        } else {
            print "Create $d\n" if $verbose;
            if (!mkdir("$d", 0755)) {