From b3486de3dbf1a33a7e8cb271daa7a5f623969511 Mon Sep 17 00:00:00 2001 From: jb Date: Sun, 10 May 1998 21:13:30 +0000 Subject: ut_time is a time_t, not a long. --- include/utmp.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include') diff --git a/include/utmp.h b/include/utmp.h index e823b4c..9e1fb5f 100644 --- a/include/utmp.h +++ b/include/utmp.h @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)utmp.h 8.2 (Berkeley) 1/21/94 - * $Id: utmp.h,v 1.6 1997/05/07 02:26:37 eivind Exp $ + * $Id: utmp.h,v 1.7 1997/05/07 20:00:13 eivind Exp $ */ #ifndef _UTMP_H_ @@ -60,7 +60,7 @@ struct utmp { char ut_line[UT_LINESIZE]; char ut_name[UT_NAMESIZE]; char ut_host[UT_HOSTSIZE]; - long ut_time; + time_t ut_time; }; #endif /* !_UTMP_H_ */ -- cgit v1.1