diff options
author | 2000-08-03 07:55:48 +0000 | |
---|---|---|
committer | 2000-08-03 07:55:48 +0000 | |
commit | a7afdd230860191bd62e9704ad1fd3d1c05526b1 (patch) | |
tree | 68e20e9ebc987b55e1d066491ad061a2a061e678 /sys/netinet/ip_ipip.c | |
parent | Fix compilation in non-INET6 case (rfunk@funknet.net) (diff) | |
download | wireguard-openbsd-a7afdd230860191bd62e9704ad1fd3d1c05526b1.tar.xz wireguard-openbsd-a7afdd230860191bd62e9704ad1fd3d1c05526b1.zip |
Correct handling of ip_off (askk@rsn.hk-r.se)
Diffstat (limited to 'sys/netinet/ip_ipip.c')
-rw-r--r-- | sys/netinet/ip_ipip.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/netinet/ip_ipip.c b/sys/netinet/ip_ipip.c index a6386f8ebdf..c9a9b64bc08 100644 --- a/sys/netinet/ip_ipip.c +++ b/sys/netinet/ip_ipip.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ip_ipip.c,v 1.3 2000/06/20 04:19:11 itojun Exp $ */ +/* $OpenBSD: ip_ipip.c,v 1.4 2000/08/03 07:55:48 angelos Exp $ */ /* * The authors of this code are John Ioannidis (ji@tla.org), @@ -468,7 +468,8 @@ ipip_output(struct mbuf *m, struct tdb *tdb, struct mbuf **mp, int skip, */ m_copydata(m, sizeof(struct ip) + offsetof(struct ip, ip_off), sizeof(u_int16_t), (caddr_t) &ipo->ip_off); - ipo->ip_off &= ~(IP_DF | IP_MF | IP_OFFMASK); + ipo->ip_off = ntohs(ipo->ip_off) & ~(IP_DF | IP_MF | + IP_OFFMASK); } #ifdef INET6 else if (tp == (IPV6_VERSION >> 4)) |