Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 10 Jan 2010 10:42:58 +0000 (UTC)
From:      Ed Schouten <ed@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-user@freebsd.org
Subject:   svn commit: r201992 - user/ed/utmpx/usr.sbin/ppp
Message-ID:  <201001101042.o0AAgwrt097451@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 */



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