From f102d685f14ca856783f29dde899b5e0a281e429 Mon Sep 17 00:00:00 2001 From: tb Date: Tue, 18 Sep 2018 15:14:06 +0000 Subject: [PATCH] Fix typo in previous: group_from_gid(st->st_gid, 1), not st_uid. This broke the chmod regression test, as noted and tracked down by bluhm. ok millert --- usr.bin/stat/stat.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr.bin/stat/stat.c b/usr.bin/stat/stat.c index 6ff0f2659c4..0107e42de91 100644 --- a/usr.bin/stat/stat.c +++ b/usr.bin/stat/stat.c @@ -1,4 +1,4 @@ -/* $OpenBSD: stat.c,v 1.22 2018/09/16 02:42:19 millert Exp $ */ +/* $OpenBSD: stat.c,v 1.23 2018/09/18 15:14:06 tb Exp $ */ /* $NetBSD: stat.c,v 1.19 2004/06/20 22:20:16 jmc Exp $ */ /* @@ -598,7 +598,7 @@ format1(const struct stat *st, case SHOW_st_gid: small = (sizeof(st->st_gid) == 4); data = st->st_gid; - sdata = group_from_gid(st->st_uid, 1); + sdata = group_from_gid(st->st_gid, 1); if (sdata == NULL) { snprintf(sid, sizeof(sid), "(%ld)", (long)st->st_gid); sdata = sid; -- 2.20.1