From: Miles Bader Date: Sun, 2 Mar 1997 04:18:21 +0000 (+0000) Subject: Sat Mar 1 20:21:31 1997 Miles Bader X-Git-Tag: cvs/libc-970302 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f6b38b9a39a360a262be1ba19ffa8210105f0d95;p=thirdparty%2Fglibc.git 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. --- diff --git a/ChangeLog b/ChangeLog index 45bc59523b3..94947213289 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 a9656fd4e9c..5ab5e618fbb 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;