Print this page
3124 Remove any existing references to utmp, use utmpx instead

@@ -29,12 +29,10 @@
 /*
  * Portions of such source code were derived from Berkeley 4.3 BSD
  * under license from the Regents of the University of California.
  */
 
-#pragma ident   "%Z%%M% %I%     %E% SMI"
-
 /*
  * utmpd        - utmp daemon
  *
  *              This program receives requests from  pututxline(3)
  *              via a named pipe to watch the process to make sure it cleans up

@@ -957,11 +955,11 @@
         u->ut_type = DEAD_PROCESS;
         (void) time(&u->ut_xtime);
         (void) pututxline(u);
         updwtmpx(WTMPX_FILE, u);
         /*
-         * XXX update wtmp for ! nonuser entries?
+         * XXX update wtmp for ! nonuserx entries?
          */
 }
 
 /*
  *              *** Error Handling and Debugging Routines ***