]> git.cameronkatri.com Git - pw-darwin.git/commitdiff
Staticize usage(). Cosmetics.
authorPhilippe Charnier <charnier@FreeBSD.org>
Fri, 10 Oct 1997 06:27:07 +0000 (06:27 +0000)
committerPhilippe Charnier <charnier@FreeBSD.org>
Fri, 10 Oct 1997 06:27:07 +0000 (06:27 +0000)
libc/gen/pw_scan.c

index 00f640bd0e9a09cec193446dacfa21d6fcc91bb6..d4747867c94abe072c7ec84d9ba60967c3cc6a60 100644 (file)
  */
 
 #ifndef lint
+#if 0
 static char sccsid[] = "@(#)pw_scan.c  8.3 (Berkeley) 4/2/94";
+#endif
+static const char rcsid[] =
+       "$Id$";
 #endif /* not lint */
 
 /*
@@ -45,7 +49,6 @@ static char sccsid[] = "@(#)pw_scan.c 8.3 (Berkeley) 4/2/94";
 #include <err.h>
 #include <fcntl.h>
 #include <pwd.h>
-#include <errno.h>
 #include <stdio.h>
 #include <string.h>
 #include <stdlib.h>
@@ -133,7 +136,7 @@ pw_scan(bp, pw)
                }
        if(p[0]) pw->pw_fields |= _PWF_SHELL;
 
-       if (p = strsep(&bp, ":")) {                     /* too many */
+       if ((p = strsep(&bp, ":"))) {                   /* too many */
 fmt:           warnx("corrupted entry");
                return (0);
        }