diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-11-23 13:17:18 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-11-23 13:17:18 +0000 |
commit | 164c1d8ffb2b508675ec56292e3b984c91dc7be4 (patch) | |
tree | 688ff70171f5dc6d456b0ee6471255ba48de54db /libutil/logwtmp.c | |
parent | df052df931ff7a0382b901b8fb7e3cf6918a334b (diff) |
import 32/64 bit compat support from glibc
Diffstat (limited to 'libutil/logwtmp.c')
-rw-r--r-- | libutil/logwtmp.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/libutil/logwtmp.c b/libutil/logwtmp.c index 85721a72d..c6a8530ca 100644 --- a/libutil/logwtmp.c +++ b/libutil/logwtmp.c @@ -37,7 +37,16 @@ void logwtmp (const char *line, const char *name, const char *host) strncpy(lutmp.ut_line, line, sizeof(lutmp.ut_line)-1); strncpy(lutmp.ut_name, name, sizeof(lutmp.ut_name)-1); strncpy(lutmp.ut_host, host, sizeof(lutmp.ut_host)-1); +#if __WORDSIZE_COMPAT32 == 0 gettimeofday(&(lutmp.ut_tv), NULL); +#else + { + struct timeval tv; + gettimeofday (&tv, NULL); + lutmp.ut_tv.tv_sec = tv.tv_sec; + lutmp.ut_tv.tv_usec = tv.tv_usec; + } +#endif updwtmp(_PATH_WTMP, &(lutmp)); } |