From 8fcfcd18dd8184bcc89a5217d35337f4513d87ca Mon Sep 17 00:00:00 2001 From: Peter Wemm Date: Sat, 27 Oct 2001 20:40:54 +0000 Subject: [PATCH] ll_time and ut_time are int32_t on disk and have to remain that way unless we dont want to run 4.x binaries any more. --- include/utmp.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/utmp.h b/include/utmp.h index 557efc021599..bdf137be93e8 100644 --- a/include/utmp.h +++ b/include/utmp.h @@ -51,7 +51,7 @@ #define UT_HOSTSIZE 16 struct lastlog { - time_t ll_time; + int32_t ll_time; char ll_line[UT_LINESIZE]; char ll_host[UT_HOSTSIZE]; }; @@ -60,7 +60,7 @@ struct utmp { char ut_line[UT_LINESIZE]; char ut_name[UT_NAMESIZE]; char ut_host[UT_HOSTSIZE]; - time_t ut_time; + int32_t ut_time; }; #endif /* !_UTMP_H_ */