[XFRM]: Fix IPv4 tunnel mode decapsulation with IPV6=n
Add missing break when CONFIG_IPV6=n.
Signed-off-by: Patrick McHardy <[EMAIL PROTECTED]>
---
commit 651521586d5f08c5d6d7198ceef1555b93135b6a
tree 5ee1183f4bc1f49f467b5bdcfebf1c5181bffcd7
parent 6ec183b20c4a1c0eafd541444ae11f8e5779d153
author Patrick McHardy <[EMAIL PROTECTED]> Tue, 13 Feb 2007 01:14:35 +0100
committer Patrick McHardy <[EMAIL PROTECTED]> Tue, 13 Feb 2007 01:14:35 +0100
net/ipv4/xfrm4_mode_tunnel.c | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/net/ipv4/xfrm4_mode_tunnel.c b/net/ipv4/xfrm4_mode_tunnel.c
index e54c549..e1cab33 100644
--- a/net/ipv4/xfrm4_mode_tunnel.c
+++ b/net/ipv4/xfrm4_mode_tunnel.c
@@ -95,6 +95,7 @@ static int xfrm4_tunnel_input(struct xfr
switch(iph->protocol){
case IPPROTO_IPIP:
+ break;
#if defined(CONFIG_IPV6) || defined (CONFIG_IPV6_MODULE)
case IPPROTO_IPV6:
break;