summaryrefslogtreecommitdiffstats
path: root/pw
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
commitd3fd4c928063a9eba830f906f9131de24eb284ef (patch)
tree673a465e5212aea4d77ab7a5f93c542a7a44a60d /pw
parentd13ab4fd48f03e64abf378665d5fe7e7cf53c379 (diff)
downloadpw-darwin-d3fd4c928063a9eba830f906f9131de24eb284ef.tar.gz
pw-darwin-d3fd4c928063a9eba830f906f9131de24eb284ef.tar.zst
pw-darwin-d3fd4c928063a9eba830f906f9131de24eb284ef.zip
Split some extra long lines
Diffstat (limited to 'pw')
-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);
}