Split some extra long lines

This commit is contained in:
Baptiste Daroussin 2015-08-02 13:33:17 +00:00
parent 9261982d92
commit 8159e0373f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=286203

View File

@ -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);
}