From: Frank Cusack Date: Sun, 27 Oct 2002 12:30:54 +0000 (+0000) Subject: link_connect_time is now unsigned X-Git-Tag: ppp-2.4.7~365 X-Git-Url: http://git.ozlabs.org/?p=ppp.git;a=commitdiff_plain;h=857e121025571b1c1173c2e70053bde804a46a0d;ds=sidebyside link_connect_time is now unsigned --- diff --git a/pppd/pppd.h b/pppd/pppd.h index 90f7446..35cf85b 100644 --- a/pppd/pppd.h +++ b/pppd/pppd.h @@ -16,7 +16,7 @@ * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. * - * $Id: pppd.h,v 1.75 2002/10/10 05:47:34 fcusack Exp $ + * $Id: pppd.h,v 1.76 2002/10/27 12:30:54 fcusack Exp $ */ /* @@ -207,7 +207,7 @@ extern GIDSET_TYPE groups[NGROUPS_MAX]; /* groups the user is in */ extern int ngroups; /* How many groups valid in groups */ extern struct pppd_stats link_stats; /* byte/packet counts etc. for link */ extern int link_stats_valid; /* set if link_stats is valid */ -extern int link_connect_time; /* time the link was up for */ +extern unsigned link_connect_time; /* time the link was up for */ extern int using_pty; /* using pty as device (notty or pty opt.) */ extern int log_to_fd; /* logging to this fd as well as syslog */ extern bool log_default; /* log_to_fd is default (stdout) */