svn commit: r201992 - user/ed/utmpx/usr.sbin/ppp

Ed Schouten ed at FreeBSD.org
Sun Jan 10 10:42:59 UTC 2010


Author: ed
Date: Sun Jan 10 10:42:58 2010
New Revision: 201992
URL: http://svn.freebsd.org/changeset/base/201992

Log:
  Just use an int instead of a time_t here. It only stores a boolean.

Modified:
  user/ed/utmpx/usr.sbin/ppp/physical.h

Modified: user/ed/utmpx/usr.sbin/ppp/physical.h
==============================================================================
--- user/ed/utmpx/usr.sbin/ppp/physical.h	Sun Jan 10 09:31:57 2010	(r201991)
+++ user/ed/utmpx/usr.sbin/ppp/physical.h	Sun Jan 10 10:42:58 2010	(r201992)
@@ -97,7 +97,7 @@ struct physical {
     char *base;
   } name;
 
-  time_t Utmp;                 /* Are we in utmp ? */
+  int Utmp;                    /* Are we in utmp ? */
   pid_t session_owner;         /* HUP this when closing the link */
 
   struct device *handler;      /* device specific handler */


More information about the svn-src-user mailing list