diff options
author | dillon <dillon@FreeBSD.org> | 2001-10-27 20:31:24 +0000 |
---|---|---|
committer | dillon <dillon@FreeBSD.org> | 2001-10-27 20:31:24 +0000 |
commit | 540d188c62a2a02d531c5989f2a559669bec234b (patch) | |
tree | 56cf964d135d7540ba2f801b8177f68a870372f9 | |
parent | 186071821a5c388da21ab0a53f41dfb0eea24cf7 (diff) | |
download | FreeBSD-src-540d188c62a2a02d531c5989f2a559669bec234b.zip FreeBSD-src-540d188c62a2a02d531c5989f2a559669bec234b.tar.gz |
sc_lasttime and sc_starttime are time_t's, not long's.
-rw-r--r-- | sys/net/if_slvar.h | 4 |
1 files 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 */ /* |