pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/mk/install Fix typos in comments, noted by Yoshito Kom...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/8a9d638f4031
branches:  trunk
changeset: 511875:8a9d638f4031
user:      jlam <jlam%pkgsrc.org@localhost>
date:      Mon Apr 24 23:44:18 2006 +0000

description:
Fix typos in comments, noted by Yoshito Komatsu in private email.

diffstat:

 mk/install/usergroupfuncs           |  4 ++--
 mk/install/usergroupfuncs.DragonFly |  4 ++--
 mk/install/usergroupfuncs.FreeBSD   |  4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)

diffs (54 lines):

diff -r 6dc6279208c5 -r 8a9d638f4031 mk/install/usergroupfuncs
--- a/mk/install/usergroupfuncs Mon Apr 24 23:22:23 2006 +0000
+++ b/mk/install/usergroupfuncs Mon Apr 24 23:44:18 2006 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: usergroupfuncs,v 1.5 2006/04/24 15:44:32 jlam Exp $
+# $NetBSD: usergroupfuncs,v 1.6 2006/04/24 23:44:18 jlam Exp $
 #
 # Default implementations of user_exists() and group_exists() shell
 # functions for checking the existence of users and groups, and of
@@ -34,7 +34,7 @@
                fi
                ${RM} -f $_testfile; return 2
        elif ${TEST} -z "$_groupid"; then
-               # $_group doesn't exist and $_group is not set
+               # $_group doesn't exist and $_groupid is not set
                return 1
        elif ${CHGRP} $_groupid $_testfile >/dev/null 2>&1; then
                _name=`${LS} -l $_testfile 2>/dev/null | ${AWK} '{ print $4 }'`
diff -r 6dc6279208c5 -r 8a9d638f4031 mk/install/usergroupfuncs.DragonFly
--- a/mk/install/usergroupfuncs.DragonFly       Mon Apr 24 23:22:23 2006 +0000
+++ b/mk/install/usergroupfuncs.DragonFly       Mon Apr 24 23:44:18 2006 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: usergroupfuncs.DragonFly,v 1.3 2006/04/24 15:44:32 jlam Exp $
+# $NetBSD: usergroupfuncs.DragonFly,v 1.4 2006/04/24 23:44:18 jlam Exp $
 #
 # Platform-specific adduser and addgroup functionality
 # on top of pw(8).
@@ -26,7 +26,7 @@
                fi
                ${RM} -f $_testfile; return 2
        elif ${TEST} -z "$_groupid"; then
-               # $_group doesn't exist and $_group is not set
+               # $_group doesn't exist and $_groupid is not set
                return 1
        elif ${CHGRP} $_groupid $_testfile >/dev/null 2>&1; then
                _name=`${LS} -l $_testfile 2>/dev/null | ${AWK} '{ print $4 }'`
diff -r 6dc6279208c5 -r 8a9d638f4031 mk/install/usergroupfuncs.FreeBSD
--- a/mk/install/usergroupfuncs.FreeBSD Mon Apr 24 23:22:23 2006 +0000
+++ b/mk/install/usergroupfuncs.FreeBSD Mon Apr 24 23:44:18 2006 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: usergroupfuncs.FreeBSD,v 1.3 2006/04/24 15:44:32 jlam Exp $
+# $NetBSD: usergroupfuncs.FreeBSD,v 1.4 2006/04/24 23:44:18 jlam Exp $
 #
 # Platform-specific adduser and addgroup functionality
 # on top of pw(8).
@@ -26,7 +26,7 @@
                fi
                ${RM} -f $_testfile; return 2
        elif ${TEST} -z "$_groupid"; then
-               # $_group doesn't exist and $_group is not set
+               # $_group doesn't exist and $_groupid is not set
                return 1
        elif ${CHGRP} $_groupid $_testfile >/dev/null 2>&1; then
                _name=`${LS} -l $_testfile 2>/dev/null | ${AWK} '{ print $4 }'`



Home | Main Index | Thread Index | Old Index