From 540d188c62a2a02d531c5989f2a559669bec234b Mon Sep 17 00:00:00 2001 From: dillon Date: Sat, 27 Oct 2001 20:31:24 +0000 Subject: sc_lasttime and sc_starttime are time_t's, not long's. --- sys/net/if_slvar.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/net/if_slvar.h b/sys/net/if_slvar.h index 5d2b903..e1716c3 100644 --- a/sys/net/if_slvar.h +++ b/sys/net/if_slvar.h @@ -56,9 +56,9 @@ struct sl_softc { u_char *sc_buf; /* input buffer */ u_int sc_flags; /* see below */ u_int sc_escape; /* =1 if last char input was FRAME_ESCAPE */ - long sc_lasttime; /* last time a char arrived */ + time_t sc_lasttime; /* last time a char arrived */ long sc_abortcount; /* number of abort escape chars */ - long sc_starttime; /* time of first abort in window */ + time_t sc_starttime; /* time of first abort in window */ u_int sc_keepalive; /* time to decide link hang */ u_int sc_outfill; /* time to send FRAME_END when output idle */ /* -- cgit v1.1