summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAngelos D. Keromytis <angelos@cvs.openbsd.org>2000-08-04 00:26:59 +0000
committerAngelos D. Keromytis <angelos@cvs.openbsd.org>2000-08-04 00:26:59 +0000
commiteb7bcb9c448ab0b3bc9c530faa78330d07841305 (patch)
treeda884c848dc7bf7cadf48a55b0adfe12d3d843a0
parenta0b5a5740cbf7859ee8285a168638b76a1b49f3c (diff)
One parenthesis too many.
-rw-r--r--sys/netinet/ip_ipip.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/ip_ipip.c b/sys/netinet/ip_ipip.c
index a769d909147..4ca9f239a20 100644
--- a/sys/netinet/ip_ipip.c
+++ b/sys/netinet/ip_ipip.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ip_ipip.c,v 1.7 2000/08/04 00:26:07 angelos Exp $ */
+/* $OpenBSD: ip_ipip.c,v 1.8 2000/08/04 00:26:58 angelos Exp $ */
/*
* The authors of this code are John Ioannidis (ji@tla.org),
@@ -469,7 +469,7 @@ 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);
NTOHS(ipo->ip_off);
- ipo->ip_off &= ~(IP_DF | IP_MF | IP_OFFMASK));
+ ipo->ip_off &= ~(IP_DF | IP_MF | IP_OFFMASK);
HTONS(ipo->ip_off);
}
#ifdef INET6