mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-11-26 20:12:44 +00:00
libbsm: honour AU_OFLAG_NORESOLVE
AU_OFLAG_NORESOLVE is documented as "Leave user and group IDs in their numeric form" but it was not actually tested. OpenBSM pull request at https://github.com/openbsm/openbsm/pull/85 PR: 282271 Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D47263
This commit is contained in:
parent
3b65da5b65
commit
ba10bfe509
@ -644,7 +644,7 @@ print_user(FILE *fp, u_int32_t usr, int oflags)
|
||||
{
|
||||
struct passwd *pwent;
|
||||
|
||||
if (oflags & AU_OFLAG_RAW)
|
||||
if (oflags & (AU_OFLAG_RAW | AU_OFLAG_NORESOLVE))
|
||||
fprintf(fp, "%d", usr);
|
||||
else {
|
||||
pwent = getpwuid(usr);
|
||||
@ -663,7 +663,7 @@ print_group(FILE *fp, u_int32_t grp, int oflags)
|
||||
{
|
||||
struct group *grpent;
|
||||
|
||||
if (oflags & AU_OFLAG_RAW)
|
||||
if (oflags & (AU_OFLAG_RAW | AU_OFLAG_NORESOLVE))
|
||||
fprintf(fp, "%d", grp);
|
||||
else {
|
||||
grpent = getgrgid(grp);
|
||||
|
Loading…
Reference in New Issue
Block a user