diff options
author | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 2000-08-04 00:26:59 +0000 |
---|---|---|
committer | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 2000-08-04 00:26:59 +0000 |
commit | eb7bcb9c448ab0b3bc9c530faa78330d07841305 (patch) | |
tree | da884c848dc7bf7cadf48a55b0adfe12d3d843a0 | |
parent | a0b5a5740cbf7859ee8285a168638b76a1b49f3c (diff) |
One parenthesis too many.
-rw-r--r-- | sys/netinet/ip_ipip.c | 4 |
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 |