summaryrefslogtreecommitdiff
path: root/sys/netinet/ip_ether.c
diff options
context:
space:
mode:
authorAngelos D. Keromytis <angelos@cvs.openbsd.org>2002-06-09 00:58:34 +0000
committerAngelos D. Keromytis <angelos@cvs.openbsd.org>2002-06-09 00:58:34 +0000
commit916e695632a43caf3995ffb19e954f234b4bc98f (patch)
treee64dbb13e171a14a2bc71181fa13a8b6fcc8a710 /sys/netinet/ip_ether.c
parent0223f72a41de28a17fbf02be5f5146f1e6078030 (diff)
Set/clear M_AUTH_AH.
Diffstat (limited to 'sys/netinet/ip_ether.c')
-rw-r--r--sys/netinet/ip_ether.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/ip_ether.c b/sys/netinet/ip_ether.c
index 33d95c16bf5..2f94d459e30 100644
--- a/sys/netinet/ip_ether.c
+++ b/sys/netinet/ip_ether.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ip_ether.c,v 1.38 2002/03/24 19:26:14 niklas Exp $ */
+/* $OpenBSD: ip_ether.c,v 1.39 2002/06/09 00:58:32 angelos Exp $ */
/*
* The author of this code is Angelos D. Keromytis (kermit@adk.gr)
*
@@ -206,7 +206,7 @@ etherip_input(struct mbuf *m, ...)
m_copydata(m, 0, sizeof(eh), (void *) &eh);
/* Reset the flags based on the inner packet */
- m->m_flags &= ~(M_BCAST|M_MCAST|M_AUTH|M_CONF);
+ m->m_flags &= ~(M_BCAST|M_MCAST|M_AUTH|M_CONF|M_AUTH_AH);
if (eh.ether_dhost[0] & 1) {
if (bcmp((caddr_t) etherbroadcastaddr,
(caddr_t)eh.ether_dhost, sizeof(etherbroadcastaddr)) == 0)