mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-01 12:19:28 +00:00
ut_time is a time_t, not a long.
This commit is contained in:
parent
b2805b78b6
commit
9f74bac921
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=35921
@ -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_ */
|
||||
|
Loading…
Reference in New Issue
Block a user