From 883d4fb97aee5522adc42a2fb660d34077d7ebb0 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Fri, 15 Mar 2002 12:35:14 +0000 Subject: Add missing updwtmp() and fix broken makefile --- libc/misc/utmp/utent.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'libc/misc/utmp/utent.c') diff --git a/libc/misc/utmp/utent.c b/libc/misc/utmp/utent.c index 2746b0b35..8d816c548 100644 --- a/libc/misc/utmp/utent.c +++ b/libc/misc/utmp/utent.c @@ -134,3 +134,15 @@ int utmpname (const char *new_ut_name) close(ut_fd); return 0; } + +extern void updwtmp(const char *wtmp_file, const struct utmp *ut) +{ + int fd; + + fd = open(wtmp_file, O_APPEND | O_WRONLY, 0); + if (fd >= 0) { + write(fd, (const char *) ut, sizeof(*ut)); + close(fd); + } +} + -- cgit v1.2.3