Comment fixes to bring us up to date with respect to POSIX 1003.1-2001.
authorJim Meyering <jim@meyering.net>
Mon, 14 Jan 2002 09:56:49 +0000 (09:56 +0000)
committerJim Meyering <jim@meyering.net>
Mon, 14 Jan 2002 09:56:49 +0000 (09:56 +0000)
In particular, POSIX.2 is now obsolete.

src/logname.c

index 805ef31..0d3fcf2 100644 (file)
@@ -88,14 +88,14 @@ main (int argc, char **argv)
   if (argc - optind != 0)
     usage (1);
 
-  /* POSIX.2 requires using getlogin (or equivalent code).  */
+  /* POSIX requires using getlogin (or equivalent code).  */
   cp = getlogin ();
   if (cp)
     {
       puts (cp);
       exit (0);
     }
-  /* POSIX.2 prohibits using a fallback technique.  */
+  /* POSIX prohibits using a fallback technique.  */
   fprintf (stderr, _("%s: no login name\n"), argv[0]);
   exit (1);
 }