* login/logout.c (logout): Don't assume ut_time has the same size as
a time_t.
* login/logwtmp.c (logwtmp): Likewise.
-/* 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.
#if _HAVE_UT_TV - 0
gettimeofday (&ut->ut_tv, NULL);
#else
- time (&ut->ut_time);
+ ut->ut_time = time (NULL);
#endif
#if _HAVE_UT_TYPE - 0
ut->ut_type = DEAD_PROCESS;
-/* 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.
#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);