Author: bapt
Date: Sun Aug  2 13:33:17 2015
New Revision: 286203
URL: https://svnweb.freebsd.org/changeset/base/286203

Log:
  Split some extra long lines

Modified:
  head/usr.sbin/pw/pw_group.c

Modified: head/usr.sbin/pw/pw_group.c
==============================================================================
--- head/usr.sbin/pw/pw_group.c Sun Aug  2 13:32:23 2015        (r286202)
+++ head/usr.sbin/pw/pw_group.c Sun Aug  2 13:33:17 2015        (r286203)
@@ -180,7 +180,8 @@ gr_gidpolicy(struct userconf * cnf, intm
                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 +223,8 @@ gr_gidpolicy(struct userconf * cnf, intm
         * 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);
 }
_______________________________________________
svn-src-head@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to