Skip to content

Commit

Permalink
{get,set}groups: remove spurious colon
Browse files Browse the repository at this point in the history
  • Loading branch information
gportay committed Nov 27, 2024
1 parent d35f549 commit c85244c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion getgroups.c
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ int getgroups(int listsize, gid_t list[])
if (ret == -1)
return -1;

__debug("%s(listsize: %i, list: %p): IAMROOT_GROUPS: '%s'\n", __func__,
__debug("%s(listsize: %i, list: %p) IAMROOT_GROUPS: '%s'\n", __func__,
listsize, list, val);

return groups.size;
Expand Down
2 changes: 1 addition & 1 deletion setgroups.c
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ int setgroups(size_t listsize, const gid_t *list)
ret = _setenv("IAMROOT_GROUPS", buf, 1);

exit:
__debug("%s(listsize: %i, list: %p): -> %i, IAMROOT_GROUPS: '%s'\n",
__debug("%s(listsize: %i, list: %p) -> %i, IAMROOT_GROUPS: '%s'\n",
__func__, (int)listsize, list, ret, _getenv("IAMROOT_GROUPS"));

return ret;
Expand Down

0 comments on commit c85244c

Please sign in to comment.