Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit fca41895 authored by Tom Herbert's avatar Tom Herbert Committed by David S. Miller
Browse files

flow_dissector: clean up IPIP case



Explicitly set proto to ETH_P_IP and jump directly to ip processing.

Signed-off-by: default avatarTom Herbert <therbert@google.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 69e12d88
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -139,7 +139,8 @@ ipv6:
		break;
	}
	case IPPROTO_IPIP:
		goto again;
		proto = htons(ETH_P_IP);
		goto ip;
	default:
		break;
	}