From owner-cvs-libexec Sun May 12 10:18:02 1996 Return-Path: owner-cvs-libexec Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id KAA00958 for cvs-libexec-outgoing; Sun, 12 May 1996 10:18:02 -0700 (PDT) Received: (from wpaul@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id KAA00935 Sun, 12 May 1996 10:17:49 -0700 (PDT) Date: Sun, 12 May 1996 10:17:49 -0700 (PDT) From: Bill Paul Message-Id: <199605121717.KAA00935@freefall.freebsd.org> To: CVS-committers, cvs-all, cvs-libexec Subject: cvs commit: src/libexec/revnetgroup hash.c hash.h parse_netgroup.c revnetgroup.c Sender: owner-cvs-libexec@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk wpaul 96/05/12 10:17:48 Modified: libexec/revnetgroup hash.c hash.h parse_netgroup.c revnetgroup.c Log: Small touchups: - Fix typos in comments in hash.c. - Remove unneeded and unused member from grouplist struct in hash.h. (Curiously, the compiler never complained about this even though the member was of type 'struct grps' which is not defined anywhere in this program.) - char ch -> int ch in revnetgroup.c. - char *argv[0]; -> char *argv[]; also in revnetgroup.c. - Force the user to specify at least one of the -u or -h flags and complain if they specify both. Revision Changes Path 1.2 +8 -4 src/libexec/revnetgroup/hash.c 1.2 +1 -2 src/libexec/revnetgroup/hash.h 1.2 +5 -1 src/libexec/revnetgroup/parse_netgroup.c 1.2 +20 -5 src/libexec/revnetgroup/revnetgroup.c