summaryrefslogtreecommitdiffstats
path: root/sys/netinet/tcp_input.c
diff options
context:
space:
mode:
authorangelos <angelos@openbsd.org>2001-05-27 00:39:26 +0000
committerangelos <angelos@openbsd.org>2001-05-27 00:39:26 +0000
commit598d4513e1d69c9df823adc4b9f14fb2cbd37fba (patch)
tree808905fc2720948e0ca9fc6f728198391292bd52 /sys/netinet/tcp_input.c
parentm_tag_first()/m_tag_next() (diff)
downloadwireguard-openbsd-598d4513e1d69c9df823adc4b9f14fb2cbd37fba.tar.xz
wireguard-openbsd-598d4513e1d69c9df823adc4b9f14fb2cbd37fba.zip
Use the new IPsec tags.
Diffstat (limited to 'sys/netinet/tcp_input.c')
-rw-r--r--sys/netinet/tcp_input.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/tcp_input.c b/sys/netinet/tcp_input.c
index 20c4399fbb1..12eb0d7f90f 100644
--- a/sys/netinet/tcp_input.c
+++ b/sys/netinet/tcp_input.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: tcp_input.c,v 1.88 2001/05/20 08:35:11 angelos Exp $ */
+/* $OpenBSD: tcp_input.c,v 1.89 2001/05/27 00:39:27 angelos Exp $ */
/* $NetBSD: tcp_input.c,v 1.23 1996/02/13 23:43:44 christos Exp $ */
/*
@@ -766,7 +766,7 @@ findpcb:
}
#ifdef IPSEC
- mtag = m_tag_find(m, PACKET_TAG_IPSEC_DONE, NULL);
+ mtag = m_tag_find(m, PACKET_TAG_IPSEC_IN_DONE, NULL);
s = splnet();
if (mtag != NULL) {
tdbi = (struct tdb_ident *)(mtag + 1);