]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
(usage, main): Use "user ID", not "UID", and similarly for "group ID".
authorPaul Eggert <eggert@cs.ucla.edu>
Tue, 12 Apr 2005 05:44:47 +0000 (05:44 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Tue, 12 Apr 2005 05:44:47 +0000 (05:44 +0000)
src/whoami.c

index 286a8d3cd1d46fe6fabbcf9700560a79fa00f632..b5037c2750636c46c9ca77dc9c258fd0e1241a78 100644 (file)
@@ -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);
 }