From f6b38b9a39a360a262be1ba19ffa8210105f0d95 Mon Sep 17 00:00:00 2001 From: Miles Bader Date: Sun, 2 Mar 1997 04:18:21 +0000 Subject: Sat Mar 1 20:21:31 1997 Miles Bader * login/utmp_file.c (pututline_file): Correctly decide whether LAST_ENTRY matches DATA. Don't depend on ut_id ever being set. (proc_utmp_eq): New function. (internal_getut_r): Renamed from internal_getutid_r. Use proc_utmp_eq. * login/logout.c (logout): Change type of entry to be DEAD_PROCESS. Tue Feb 25 19:42:50 1997 Miles Bader * sysdeps/mach/hurd/fcntlbits.h (O_NORW): New macro. --- ChangeLog | 15 +++++++++++++++ login/logout.c | 3 +++ 2 files changed, 18 insertions(+) diff --git a/ChangeLog b/ChangeLog index 45bc59523b..9494721328 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,18 @@ +Sat Mar 1 20:21:31 1997 Miles Bader + + * login/utmp_file.c (pututline_file): Correctly decide whether + LAST_ENTRY matches DATA. + Don't depend on ut_id ever being set. + (proc_utmp_eq): New function. + (internal_getut_r): Renamed from internal_getutid_r. + Use proc_utmp_eq. + + * login/logout.c (logout): Change type of entry to be DEAD_PROCESS. + +Tue Feb 25 19:42:50 1997 Miles Bader + + * sysdeps/mach/hurd/fcntlbits.h (O_NORW): New macro. + 1997-02-27 05:12 Ulrich Drepper * manual/Makefile: Add rules to run and distribute xtract-typefun. diff --git a/login/logout.c b/login/logout.c index a9656fd4e9..5ab5e618fb 100644 --- a/login/logout.c +++ b/login/logout.c @@ -55,6 +55,9 @@ logout (const char *line) #else time (&ut->ut_time); #endif +#if _HAVE_UT_TYPE - 0 + ut->ut_type = DEAD_PROCESS; +#endif if (pututline (ut) >= 0) result = 1; -- cgit v1.2.3