summaryrefslogtreecommitdiffstats
path: root/usr.sbin
diff options
context:
space:
mode:
authorbapt <bapt@FreeBSD.org>2015-08-02 13:33:17 +0000
committerbapt <bapt@FreeBSD.org>2015-08-02 13:33:17 +0000
commit2c026ebb5ca4e968e5f0fa0cb5317b99321a19fe (patch)
tree4c90aa7a78a3220615981f86b87bfe08f22b84ca /usr.sbin
parent2cfaa818a15c0cb558a67a073aa2e7daf63d3bf8 (diff)
downloadFreeBSD-src-2c026ebb5ca4e968e5f0fa0cb5317b99321a19fe.zip
FreeBSD-src-2c026ebb5ca4e968e5f0fa0cb5317b99321a19fe.tar.gz
Split some extra long lines
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/pw/pw_group.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/usr.sbin/pw/pw_group.c b/usr.sbin/pw/pw_group.c
index 3f19e77..df2d76d 100644
--- a/usr.sbin/pw/pw_group.c
+++ b/usr.sbin/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);
}
OpenPOWER on IntegriCloud