]> git.cameronkatri.com Git - pw-darwin.git/blobdiff - pw/pw_group.c
Remove an uneeded indentation introduced in r286196 to silence gcc warnging
[pw-darwin.git] / pw / pw_group.c
index 22e80b0cc2d3006fa2ff07958179c7a07810aa21..dd650625fde32429132de1fc4460d90cc0379957 100644 (file)
@@ -1,4 +1,6 @@
 /*-
+ * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
+ *
  * Copyright (C) 1996
  *     David L. Nugent.  All rights reserved.
  *
@@ -32,10 +34,10 @@ static const char rcsid[] =
 #include <ctype.h>
 #include <err.h>
 #include <grp.h>
-#include <inttypes.h>
 #include <libutil.h>
 #include <paths.h>
-#include <stdbool.h>
+#include <string.h>
+#include <sysexits.h>
 #include <termios.h>
 #include <unistd.h>
 
@@ -180,7 +182,8 @@ gr_gidpolicy(struct userconf * cnf, intmax_t id)
                gid = (gid_t) id;
 
                if ((grp = GETGRGID(gid)) != NULL && conf.checkduplicate)
-                       errx(EX_DATAERR, "gid `%ju' has already been allocated", (uintmax_t)grp->gr_gid);
+                       errx(EX_DATAERR, "gid `%ju' has already been allocated",
+                           (uintmax_t)grp->gr_gid);
                return (gid);
        }
 
@@ -222,7 +225,8 @@ gr_gidpolicy(struct userconf * cnf, intmax_t id)
         * Another sanity check
         */
        if (gid < cnf->min_gid || gid > cnf->max_gid)
-               errx(EX_SOFTWARE, "unable to allocate a new gid - range fully used");
+               errx(EX_SOFTWARE, "unable to allocate a new gid - range fully "
+                   "used");
        bm_dealloc(&bm);
        return (gid);
 }
@@ -257,9 +261,9 @@ pw_group_next(int argc, char **argv, char *arg1 __unused)
        struct userconf *cnf;
        const char *cfg = NULL;
        int ch;
-       bool quiet;
+       bool quiet = false;
 
-       while ((ch = getopt(argc, argv, "Cq")) != -1) {
+       while ((ch = getopt(argc, argv, "C:q")) != -1) {
                switch (ch) {
                case 'C':
                        cfg = optarg;
@@ -280,7 +284,7 @@ int
 pw_group_show(int argc, char **argv, char *arg1)
 {
        struct group *grp = NULL;
-       char *name;
+       char *name = NULL;
        intmax_t id = -1;
        int ch;
        bool all, force, quiet, pretty;
@@ -295,7 +299,7 @@ pw_group_show(int argc, char **argv, char *arg1)
        };
 
        if (arg1 != NULL) {
-               if (strspn(arg1, "0123456789") == strlen(arg1))
+               if (arg1[strspn(arg1, "0123456789")] == '\0')
                        id = pw_checkid(arg1, GID_MAX);
                else
                        name = arg1;
@@ -358,7 +362,7 @@ pw_group_del(int argc, char **argv, char *arg1)
        bool nis = false;
 
        if (arg1 != NULL) {
-               if (strspn(arg1, "0123456789") == strlen(arg1))
+               if (arg1[strspn(arg1, "0123456789")] == '\0')
                        id = pw_checkid(arg1, GID_MAX);
                else
                        name = arg1;
@@ -489,7 +493,7 @@ pw_group_add(int argc, char **argv, char *arg1)
        quiet = precrypted = dryrun = pretty = nis = false;
 
        if (arg1 != NULL) {
-               if (strspn(arg1, "0123456789") == strlen(arg1))
+               if (arg1[strspn(arg1, "0123456789")] == '\0')
                        id = pw_checkid(arg1, GID_MAX);
                else
                        name = arg1;
@@ -575,7 +579,7 @@ pw_group_mod(int argc, char **argv, char *arg1)
        quiet = pretty = dryrun = nis = precrypted = false;
 
        if (arg1 != NULL) {
-               if (strspn(arg1, "0123456789") == strlen(arg1))
+               if (arg1[strspn(arg1, "0123456789")] == '\0')
                        id = pw_checkid(arg1, GID_MAX);
                else
                        name = arg1;
@@ -662,6 +666,11 @@ pw_group_mod(int argc, char **argv, char *arg1)
                grp_add_members(&grp, newmembers);
        }
 
+       if (dryrun) {
+               print_group(grp, pretty);
+               return (EXIT_SUCCESS);
+       }
+
        if ((rc = chggrent(name, grp)) != 0) {
                if (rc == -1)
                        errx(EX_IOERR, "group '%s' not available (NIS?)",