diff options
author | brian <brian@cvs.openbsd.org> | 1998-06-27 12:06:50 +0000 |
---|---|---|
committer | brian <brian@cvs.openbsd.org> | 1998-06-27 12:06:50 +0000 |
commit | e9b7cb7902cc8bb5ac9c456c8519103d3e494bcb (patch) | |
tree | 0661032b8d4df3b135c4eb4c922e0392967055ac /usr.sbin/ppp/lcp.c | |
parent | 5b7d1fce1b5e476e4e95011e96c502dea5939af2 (diff) |
Fix ``sizeof(u_long) == 4'' errors.
Suggested by: theo
Diffstat (limited to 'usr.sbin/ppp/lcp.c')
-rw-r--r-- | usr.sbin/ppp/lcp.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.sbin/ppp/lcp.c b/usr.sbin/ppp/lcp.c index 02ab7f12035..b0e4cea81cc 100644 --- a/usr.sbin/ppp/lcp.c +++ b/usr.sbin/ppp/lcp.c @@ -17,7 +17,7 @@ * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. * - * $Id: lcp.c,v 1.9 1998/02/04 01:01:24 brian Exp $ + * $Id: lcp.c,v 1.10 1998/06/27 12:06:44 brian Exp $ * * TODO: * o Validate magic number received from peer. @@ -27,7 +27,6 @@ #include <sys/time.h> #include <sys/socket.h> #include <net/if.h> -#include <net/if_tun.h> #include <netinet/in.h> #include <arpa/inet.h> |