Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 26 Aug 2002 16:43:20 -0700 (PDT)
From:      Peter Wemm <peter@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 16615 for review
Message-ID:  <200208262343.g7QNhKbu049578@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://people.freebsd.org/~peter/p4db/chv.cgi?CH=16615

Change 16615 by peter@peter_daintree on 2002/08/26 16:42:32

	lastlog.ll_time and utmp.ut_time are actually int32_t, not
	time_t.  Get it right.

Affected files ...

.. //depot/projects/ia64/share/man/man5/utmp.5#4 edit

Differences ...

==== //depot/projects/ia64/share/man/man5/utmp.5#4 (text+ko) ====

@@ -67,7 +67,7 @@
 #define UT_HOSTSIZE     16
 
 struct lastlog {
-        time_t  ll_time;		/* When user logged in */
+        int32_t ll_time;		/* When user logged in */
         char    ll_line[UT_LINESIZE];	/* Terminal line name */
         char    ll_host[UT_HOSTSIZE];	/* Host user came from */
 };
@@ -76,7 +76,7 @@
         char    ut_line[UT_LINESIZE];	/* Terminal line name */
         char    ut_name[UT_NAMESIZE];	/* User's login name */
         char    ut_host[UT_HOSTSIZE];	/* Host user came from */
-        time_t  ut_time;		/* When user logged in */
+        int32_t ut_time;		/* When user logged in */
 };
 .Ed
 .Pp

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe p4-projects" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200208262343.g7QNhKbu049578>