[NETFILTER]: xt_tcpudp: fix wrong struct in udp_checkentry

It doesn't seem to have any effect on the x86 architecture but it does
have effect on the Axis CRIS architecture.

Signed-off-by: Jesper Bengtsson <jesper.bengtsson@axis.com>
Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>

authored by Jesper Bengtsson and committed by David S. Miller a289d70d dbaaa07a

+1 -1
+1 -1
net/netfilter/xt_tcpudp.c
··· 188 void *matchinfo, 189 unsigned int hook_mask) 190 { 191 - const struct xt_tcp *udpinfo = matchinfo; 192 193 /* Must specify no unknown invflags */ 194 return !(udpinfo->invflags & ~XT_UDP_INV_MASK);
··· 188 void *matchinfo, 189 unsigned int hook_mask) 190 { 191 + const struct xt_udp *udpinfo = matchinfo; 192 193 /* Must specify no unknown invflags */ 194 return !(udpinfo->invflags & ~XT_UDP_INV_MASK);