mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 18:27:35 +00:00
id: Remove weird commas from output
This commit is contained in:
parent
f558c8e36a
commit
d4b4883d55
1 changed files with 2 additions and 2 deletions
|
@ -100,7 +100,7 @@ bool print_full_id_list()
|
|||
struct passwd* pw = getpwuid(uid);
|
||||
struct group* gr = getgrgid(gid);
|
||||
|
||||
printf("uid=%u(%s), gid=%u(%s)", uid, pw ? pw->pw_name : "n/a", gid, gr ? gr->gr_name : "n/a");
|
||||
printf("uid=%u(%s) gid=%u(%s)", uid, pw ? pw->pw_name : "n/a", gid, gr ? gr->gr_name : "n/a");
|
||||
|
||||
int extra_gid_count = getgroups(0, nullptr);
|
||||
if (extra_gid_count) {
|
||||
|
@ -110,7 +110,7 @@ bool print_full_id_list()
|
|||
perror("\ngetgroups");
|
||||
return false;
|
||||
}
|
||||
printf(", groups=");
|
||||
printf(" groups=");
|
||||
for (int g = 0; g < extra_gid_count; ++g) {
|
||||
auto* gr = getgrgid(extra_gids[g]);
|
||||
if (gr)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue