summaryrefslogtreecommitdiffstats
path: root/sys/netinet/ip_ipip.c
diff options
context:
space:
mode:
authorangelos <angelos@openbsd.org>2000-08-03 07:55:48 +0000
committerangelos <angelos@openbsd.org>2000-08-03 07:55:48 +0000
commita7afdd230860191bd62e9704ad1fd3d1c05526b1 (patch)
tree68e20e9ebc987b55e1d066491ad061a2a061e678 /sys/netinet/ip_ipip.c
parentFix compilation in non-INET6 case (rfunk@funknet.net) (diff)
downloadwireguard-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.c5
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))