aboutsummaryrefslogtreecommitdiff
path: root/include/utmp.h
diff options
context:
space:
mode:
authorPeter Wemm <peter@FreeBSD.org>2001-10-27 20:40:54 +0000
committerPeter Wemm <peter@FreeBSD.org>2001-10-27 20:40:54 +0000
commit8fcfcd18dd8184bcc89a5217d35337f4513d87ca (patch)
tree118191558acf4736b5f782f3ec71f0a3e7b685de /include/utmp.h
parent1fc36ee6d4baa3ca1fd8997c0391a87f1c66adb4 (diff)
Notes
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 557efc021599b..bdf137be93e81 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_ */