[NETFILTER]: nf_conntrack_h323: fix get_h225_addr() for IPv6 address access

Update get_h225_addr() to meet the changes in ASN.1 types. It was using
field ip6 to access IPv6 TransportAddress, it should be ip according the
ASN.1 definition.

Signed-off-by: Jing Min Zhao <zhaojingmin@vivecode.com>
Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>

authored by Jing Min Zhao and committed by David S. Miller bb807245 d0529186

+1 -1
+1 -1
net/netfilter/nf_conntrack_h323_main.c
··· 640 case eTransportAddress_ip6Address: 641 if (family != AF_INET6) 642 return 0; 643 - p = data + taddr->ip6Address.ip6; 644 len = 16; 645 break; 646 default:
··· 640 case eTransportAddress_ip6Address: 641 if (family != AF_INET6) 642 return 0; 643 + p = data + taddr->ip6Address.ip; 644 len = 16; 645 break; 646 default: