From: Paul Mackerras Date: Mon, 24 Apr 1995 02:42:06 +0000 (+0000) Subject: changed int to time_t for idle times X-Git-Tag: RELEASE_2_3_6~789 X-Git-Url: https://git.ozlabs.org/?a=commitdiff_plain;h=533de9783f794c6b1506ff92939a72eb32102ffb;p=ppp.git changed int to time_t for idle times --- diff --git a/include/net/ppp_defs.h b/include/net/ppp_defs.h index 4f0e711..3e2f9a7 100644 --- a/include/net/ppp_defs.h +++ b/include/net/ppp_defs.h @@ -1,4 +1,4 @@ -/* $Id: ppp_defs.h,v 1.5 1994/12/05 00:32:37 paulus Exp $ */ +/* $Id: ppp_defs.h,v 1.6 1995/04/24 02:42:06 paulus Exp $ */ /* * ppp_defs.h - PPP definitions. @@ -145,8 +145,8 @@ struct ppp_comp_stats { * the last NP packet was sent or received. */ struct ppp_idle { - int xmit_idle; /* time since last NP packet sent */ - int recv_idle; /* time since last NP packet received */ + time_t xmit_idle; /* time since last NP packet sent */ + time_t recv_idle; /* time since last NP packet received */ }; #ifndef __P