diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2005-04-12 05:44:47 +0000 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2005-04-12 05:44:47 +0000 |
commit | 6fabf88aec6283c9f17279e4273bb607ecc671b8 (patch) | |
tree | de3458b418a59da4ee5bfa4d3a11da4d151b6e5d /src | |
parent | 064c7a4273390cf169520ec1c91e86eb344b02d5 (diff) | |
download | coreutils-6fabf88aec6283c9f17279e4273bb607ecc671b8.tar.xz |
(usage, main): Use "user ID", not "UID", and similarly for "group ID".
Diffstat (limited to 'src')
-rw-r--r-- | src/whoami.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/whoami.c b/src/whoami.c index 286a8d3cd..b5037c275 100644 --- a/src/whoami.c +++ b/src/whoami.c @@ -49,7 +49,7 @@ usage (int status) { printf (_("Usage: %s [OPTION]...\n"), program_name); fputs (_("\ -Print the user name associated with the current effective user id.\n\ +Print the user name associated with the current effective user ID.\n\ Same as id -un.\n\ \n\ "), stdout); @@ -92,7 +92,7 @@ main (int argc, char **argv) puts (pw->pw_name); exit (EXIT_SUCCESS); } - fprintf (stderr, _("%s: cannot find username for UID %lu\n"), + fprintf (stderr, _("%s: cannot find name for user ID %lu\n"), program_name, (unsigned long int) uid); exit (EXIT_FAILURE); } |