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.
This commit is contained in:
Peter Wemm 2001-10-27 20:40:54 +00:00
parent 1fc36ee6d4
commit 8fcfcd18dd
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=85609

View File

@ -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_ */