mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-02 12:30:31 +00:00
Userland: Fix id(1) printing the user's primary group for extra gids
This regressed in 538cc9d9
because of a typo.
This commit is contained in:
parent
08359ba578
commit
ce3f8661fb
Notes:
sideshowbarker
2024-07-18 07:40:52 +09:00
Author: https://github.com/sin-ack Commit: https://github.com/SerenityOS/serenity/commit/ce3f8661fb7 Pull-request: https://github.com/SerenityOS/serenity/pull/9131
1 changed files with 1 additions and 1 deletions
|
@ -134,7 +134,7 @@ static bool print_full_id_list(Core::Account const& account)
|
||||||
out("uid={}({}) gid={}({})", uid, pw ? pw->pw_name : "n/a", gid, gr ? gr->gr_name : "n/a");
|
out("uid={}({}) gid={}({})", uid, pw ? pw->pw_name : "n/a", gid, gr ? gr->gr_name : "n/a");
|
||||||
|
|
||||||
for (auto extra_gid : account.extra_gids()) {
|
for (auto extra_gid : account.extra_gids()) {
|
||||||
auto* gr = getgrgid(gid);
|
auto* gr = getgrgid(extra_gid);
|
||||||
if (gr)
|
if (gr)
|
||||||
out(" {}({})", extra_gid, gr->gr_name);
|
out(" {}({})", extra_gid, gr->gr_name);
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in a new issue