From: Paul Eggert Date: Tue, 30 Nov 2004 21:41:31 +0000 (+0000) Subject: Make readutmp more consistent among its client code. X-Git-Tag: v5.3.0~255 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=525e6c12c317eb69e16e73dede8f6f8861ea66cd;p=thirdparty%2Fcoreutils.git Make readutmp more consistent among its client code. --- diff --git a/ChangeLog b/ChangeLog index 7adaedc0e4..c107ca957a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,7 +1,24 @@ -2004-11-25 Paul Eggert +2004-11-30 Paul Eggert * Version 5.3.0. + * src/pinky.c (gethostname): Remove decl. + (scan_entries): Use IS_USER_PROCESS instead of by-hand code. + * src/uptime.c (print_uptime): Use IS_USER_PROCESS and + UT_TYPE_BOOT_TIME instead of by-hand code. + * src/users.c (list_entries_users): Use IS_USER_PROCESS + instead of by-hand code. + * src/who.c (USER_PROCESS, RUN_LVL, INIT_PROCESS, LOGIN_PROCESS, + DEAD_PROCESS, BOOT_TIME, NEW_TIME, UT_TYPE_UNDEF, UT_TYPE): Remove. + (IS_USER_PROCESS): Move to ../lib/readutmp.h. + (UT_TYPE_RUN_LVL, UT_TYPE_INIT_PROCESS, UT_TYPE_LOGIN_PROCESS, + UT_TYPE_DEAD_PROCESS, UT_TYPE_NEW_TIME): New macros. + (gethostname): Remove decl. + (list_entries_who, scan_entries): Use the new macros defined above, + for consistency with pinky, uptime, and users. + +2004-11-25 Paul Eggert + Fix problem reported by Scott S. Tinsley for HP-UX 11.11 using HP's ANSI C compiler. Declaring int functions causes warnings on some modern systems and shouldn't be needed to compile on ancient diff --git a/lib/ChangeLog b/lib/ChangeLog index 8760efafd9..abefd19cf3 100644 --- a/lib/ChangeLog +++ b/lib/ChangeLog @@ -1,3 +1,15 @@ +2004-11-30 Paul Eggert + + * readutmp.c: Include readutmp.h first. + Include , since readutmp.h no longer does that. + * readutmp.h: Don't include , , + , ; not needed to establish interface. + Include instead. + (errno): Remove decl. + (HAVE_STRUCT_XTMP_UT_TYPE): Remove; no longer needed. + (UT_TYPE_EQ, UT_TYPE_NOT_DEFINED, UT_TYPE_BOOT_TIME, + UT_TYPE_USER_PROCESS, IS_USER_PROCESS): New macros. + 2004-11-30 Jim Meyering Change the name of the robust chdir function from chdir to chdir_long.