summaryrefslogtreecommitdiff
path: root/src/id.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1998-06-29 16:24:01 +0000
committerJim Meyering <jim@meyering.net>1998-06-29 16:24:01 +0000
commitf3c14cb59f66ab6cbfa199cbcbd1ade1c141a003 (patch)
tree7f6ed88bc79c3bcd0820015f2e85dfe8be43f47f /src/id.c
parent8ba97d963e065c7bc711c4ffa921fd3b06ed8aff (diff)
downloadcoreutils-f3c14cb59f66ab6cbfa199cbcbd1ade1c141a003.tar.xz
revert back to using lower case _unlocked wrapper names
Diffstat (limited to 'src/id.c')
-rw-r--r--src/id.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/id.c b/src/id.c
index e32eda596..9371a32d0 100644
--- a/src/id.c
+++ b/src/id.c
@@ -170,7 +170,7 @@ main (int argc, char **argv)
print_group_list (argv[optind]);
else
print_full_info (argv[optind]);
- PUTCHAR ('\n');
+ putchar ('\n');
exit (problems != 0);
}
@@ -261,7 +261,7 @@ print_group_list (const char *username)
print_group (rgid);
if (egid != rgid)
{
- PUTCHAR (' ');
+ putchar (' ');
print_group (egid);
}
@@ -280,7 +280,7 @@ print_group_list (const char *username)
for (i = 0; i < n_groups; i++)
if (groups[i] != rgid && groups[i] != egid)
{
- PUTCHAR (' ');
+ putchar (' ');
print_group (groups[i]);
}
free (groups);
@@ -347,7 +347,7 @@ print_full_info (const char *username)
for (i = 0; i < n_groups; i++)
{
if (i > 0)
- PUTCHAR (',');
+ putchar (',');
printf ("%u", (unsigned) groups[i]);
grp = getgrgid (groups[i]);
if (grp == NULL)