summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2015-08-02 13:33:17 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2015-08-02 13:33:17 +0000
commit9f8dd284c157358a0c2865ced5fbd8a110f5f779 (patch)
tree1c23fa2261036e497ef139379c2f986c86f7a474
parentaa6ce6f0893bb93a6ff67ce2579604b66bba1458 (diff)
downloadpw-darwin-9f8dd284c157358a0c2865ced5fbd8a110f5f779.tar.gz
pw-darwin-9f8dd284c157358a0c2865ced5fbd8a110f5f779.tar.zst
pw-darwin-9f8dd284c157358a0c2865ced5fbd8a110f5f779.zip
Split some extra long lines
-rw-r--r--pw/pw_group.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/pw/pw_group.c b/pw/pw_group.c
index 3f19e77..df2d76d 100644
--- a/pw/pw_group.c
+++ b/pw/pw_group.c
@@ -180,7 +180,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 +223,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);
}