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/logout.c | |
parent | df052df931ff7a0382b901b8fb7e3cf6918a334b (diff) |
import 32/64 bit compat support from glibc
Diffstat (limited to 'libutil/logout.c')
-rw-r--r-- | libutil/logout.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/libutil/logout.c b/libutil/logout.c index 165077e1d..08094d41d 100644 --- a/libutil/logout.c +++ b/libutil/logout.c @@ -51,7 +51,16 @@ logout (const char *line) memset (ut->ut_host, 0, sizeof ut->ut_host); #endif #if _HAVE_UT_TV - 0 +# if __WORDSIZE_COMPAT32 == 0 gettimeofday (&ut->ut_tv, NULL); +# else + { + struct timeval tv; + gettimeofday (&tv, NULL); + ut->ut_tv.tv_sec = tv.tv_sec; + ut->ut_tv.tv_usec = tv.tv_usec; + } +# endif #else time (&ut->ut_time); #endif |