diff options
author | Bernhard Reutner-Fischer | 2015-04-02 23:03:46 +0200 |
---|---|---|
committer | Bernhard Reutner-Fischer | 2015-04-02 23:03:46 +0200 |
commit | 86a7f18f211af1abda5c855d2674b0fcb53de524 (patch) | |
tree | 9fd1eadb83bf48b29e9468ea8ff0e43c0736c245 /miscutils/wall.c | |
parent | 1186894f773e13ab9ca2b3e05a194e9b88796fbe (diff) | |
download | busybox-86a7f18f211af1abda5c855d2674b0fcb53de524.zip busybox-86a7f18f211af1abda5c855d2674b0fcb53de524.tar.gz |
*: Switch to POSIX utmpx API
UTMP is SVID legacy, UTMPX is mandated by POSIX.
Glibc and uClibc have identical layout of UTMP and UTMPX, both of these
libc treat _PATH_UTMPX as _PATH_UTMP so from a user-perspective nothing
changes except the names of the API entrypoints.
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'miscutils/wall.c')
-rw-r--r-- | miscutils/wall.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/miscutils/wall.c b/miscutils/wall.c index bb709ee..50658f4 100644 --- a/miscutils/wall.c +++ b/miscutils/wall.c @@ -32,7 +32,7 @@ int wall_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; int wall_main(int argc UNUSED_PARAM, char **argv) { - struct utmp *ut; + struct utmpx *ut; char *msg; int fd; @@ -46,8 +46,8 @@ int wall_main(int argc UNUSED_PARAM, char **argv) msg = xmalloc_read(fd, NULL); if (ENABLE_FEATURE_CLEAN_UP && argv[1]) close(fd); - setutent(); - while ((ut = getutent()) != NULL) { + setutxent(); + while ((ut = getutxent()) != NULL) { char *line; if (ut->ut_type != USER_PROCESS) continue; @@ -56,7 +56,7 @@ int wall_main(int argc UNUSED_PARAM, char **argv) free(line); } if (ENABLE_FEATURE_CLEAN_UP) { - endutent(); + endutxent(); free(msg); } return EXIT_SUCCESS; |