diff options
author | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 2001-05-27 00:39:44 +0000 |
---|---|---|
committer | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 2001-05-27 00:39:44 +0000 |
commit | 43b51672a0e9c4caed43e720d3b4c5ebea5b43c9 (patch) | |
tree | c9da552df2cc19f944af56487239061c19cc8fcf /sys/netinet/ipsec_output.c | |
parent | 2891f3c179dd5dbd7059a576bbc528955e6ea05b (diff) |
New tags.
Diffstat (limited to 'sys/netinet/ipsec_output.c')
-rw-r--r-- | sys/netinet/ipsec_output.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/netinet/ipsec_output.c b/sys/netinet/ipsec_output.c index 8fa6f4725f1..651dd71f849 100644 --- a/sys/netinet/ipsec_output.c +++ b/sys/netinet/ipsec_output.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ipsec_output.c,v 1.9 2001/05/22 23:38:34 angelos Exp $ */ +/* $OpenBSD: ipsec_output.c,v 1.10 2001/05/27 00:39:43 angelos Exp $ */ /* * The author of this code is Angelos D. Keromytis (angelos@cis.upenn.edu) @@ -340,11 +340,11 @@ ipsp_process_done(struct mbuf *m, struct tdb *tdb, struct tdb *tdb2) * packet. */ if ((tdb->tdb_flags & TDBF_SKIPCRYPTO) == 0) - mtag = m_tag_get(PACKET_TAG_IPSEC_DONE, sizeof(struct tdb_ident), + mtag = m_tag_get(PACKET_TAG_IPSEC_OUT_DONE, sizeof(struct tdb_ident), M_NOWAIT); else - mtag = m_tag_get(PACKET_TAG_IPSEC_NEEDED, sizeof(struct tdb_ident), - M_NOWAIT); + mtag = m_tag_get(PACKET_TAG_IPSEC_OUT_CRYPTO_NEEDED, + sizeof(struct tdb_ident), M_NOWAIT); if (mtag == NULL) { |