diff options
author | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 2001-05-28 05:28:23 +0000 |
---|---|---|
committer | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 2001-05-28 05:28:23 +0000 |
commit | ad325598f562f7fc7aac4fe7db74138b478cf970 (patch) | |
tree | 31a8cf131ab0c2f65c6a49ea7ec0d4df2bb90e9c /sys/netinet6 | |
parent | 2e178cfe332f0bfafae33b8ec2b311388d10e3ed (diff) |
Don't check for IPV6_ENCAPSULATED, no longer needed since we have the tags.
Diffstat (limited to 'sys/netinet6')
-rw-r--r-- | sys/netinet6/ip6_output.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/sys/netinet6/ip6_output.c b/sys/netinet6/ip6_output.c index b852aa706f6..4862af8b4dd 100644 --- a/sys/netinet6/ip6_output.c +++ b/sys/netinet6/ip6_output.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ip6_output.c,v 1.37 2001/05/28 05:27:30 angelos Exp $ */ +/* $OpenBSD: ip6_output.c,v 1.38 2001/05/28 05:28:22 angelos Exp $ */ /* $KAME: ip6_output.c,v 1.172 2001/03/25 09:55:56 itojun Exp $ */ /* @@ -198,10 +198,6 @@ ip6_output(m0, opt, ro, flags, im6o, ifpp) } #ifdef IPSEC - /* This is kept mostly for historical reasons */ - if (flags & IPV6_ENCAPSULATED) - goto done_spd; - /* * splnet is chosen over spltdb because we are not allowed to * lower the level, and udp6_output calls us in splnet(). XXX check |