summaryrefslogtreecommitdiffstats
path: root/include/utmp.h
diff options
context:
space:
mode:
authorpeter <peter@FreeBSD.org>2001-10-27 20:40:54 +0000
committerpeter <peter@FreeBSD.org>2001-10-27 20:40:54 +0000
commit1db36b043890fb5ab974c20c235530931dbde317 (patch)
tree118191558acf4736b5f782f3ec71f0a3e7b685de /include/utmp.h
parent540d188c62a2a02d531c5989f2a559669bec234b (diff)
downloadFreeBSD-src-1db36b043890fb5ab974c20c235530931dbde317.zip
FreeBSD-src-1db36b043890fb5ab974c20c235530931dbde317.tar.gz
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.
Diffstat (limited to 'include/utmp.h')
-rw-r--r--include/utmp.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/utmp.h b/include/utmp.h
index 557efc0..bdf137b 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_ */
OpenPOWER on IntegriCloud