diff options
author | Jason Wright <jason@cvs.openbsd.org> | 2003-03-14 18:28:13 +0000 |
---|---|---|
committer | Jason Wright <jason@cvs.openbsd.org> | 2003-03-14 18:28:13 +0000 |
commit | 3151fbe76124ae5f849a37690ca9a051780b9da4 (patch) | |
tree | 825230df85069d587b2afce9345eaa9187a625f2 /sys/netinet | |
parent | 45598181ec7e0ac20c0ff2bb4a10b779e5419efd (diff) |
kill vaxisms
Diffstat (limited to 'sys/netinet')
-rw-r--r-- | sys/netinet/ip_output.c | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/sys/netinet/ip_output.c b/sys/netinet/ip_output.c index 8b301e59d5b..8e56c761ea9 100644 --- a/sys/netinet/ip_output.c +++ b/sys/netinet/ip_output.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ip_output.c,v 1.151 2003/01/31 17:27:03 deraadt Exp $ */ +/* $OpenBSD: ip_output.c,v 1.152 2003/03/14 18:28:12 jason Exp $ */ /* $NetBSD: ip_output.c,v 1.28 1996/02/13 23:43:07 christos Exp $ */ /* @@ -68,10 +68,6 @@ #include <net/pfvar.h> #endif -#ifdef vax -#include <machine/mtpr.h> -#endif - #ifdef IPSEC #ifdef ENCDEBUG #define DPRINTF(x) do { if (encdebug) printf x ; } while (0) @@ -1493,10 +1489,9 @@ ip_pcbopts(pcbopt, m) return (0); } -#ifndef vax if (m->m_len % sizeof(int32_t)) goto bad; -#endif + /* * IP first-hop destination address will be stored before * actual options; move other options back |