diff options
author | Roland McGrath <roland@gnu.org> | 2002-09-20 20:01:39 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-09-20 20:01:39 +0000 |
commit | 51104ec01415a078b6d8ab2717721b578dd5d1b3 (patch) | |
tree | 829b7404f689cfbb5d97bf9f4295ed85f8961a52 /login/logwtmp.c | |
parent | 2ed4a17c9aba7194dd51c766ea6b0ba781d6ce16 (diff) | |
download | glibc-51104ec01415a078b6d8ab2717721b578dd5d1b3.tar glibc-51104ec01415a078b6d8ab2717721b578dd5d1b3.tar.gz glibc-51104ec01415a078b6d8ab2717721b578dd5d1b3.tar.bz2 glibc-51104ec01415a078b6d8ab2717721b578dd5d1b3.zip |
2002-09-18 Bruno Haible <bruno@clisp.org>
* login/logout.c (logout): Don't assume ut_time has the same size as
a time_t.
* login/logwtmp.c (logwtmp): Likewise.
Diffstat (limited to 'login/logwtmp.c')
-rw-r--r-- | login/logwtmp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/login/logwtmp.c b/login/logwtmp.c index 994029cb63..68a8f8f5b5 100644 --- a/login/logwtmp.c +++ b/login/logwtmp.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996, 1997 Free Software Foundation, Inc. +/* Copyright (C) 1996, 1997, 2002 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996. @@ -46,7 +46,7 @@ logwtmp (const char *line, const char *name, const char *host) #if _HAVE_UT_TV - 0 __gettimeofday (&ut.ut_tv, NULL); #else - time (&ut.ut_time); + ut.ut_time = time (NULL); #endif updwtmp (_PATH_WTMP, &ut); |