[NETFILTER]: ip6t_eui64: Fixes calculation of Universal/Local bit

RFC2464 says that the next to lowerst order bit of the first octet
of the Interface Identifier is formed by complementing
the Universal/Local bit of the EUI-64. But ip6t_eui64 uses OR not XOR.

Thanks Peter Ivancik for reporing this bug and posting a patch
for it.

Signed-off-by: Yasuyuki Kozakai <yasuyuki.kozakai@toshiba.co.jp>
Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>

authored by Yasuyuki Kozakai and committed by David S. Miller 8f41f017 a6ca5f1d

+1 -1
+1 -1
net/ipv6/netfilter/ip6t_eui64.c
··· 47 memcpy(eui64 + 5, eth_hdr(skb)->h_source + 3, 3); 48 eui64[3] = 0xff; 49 eui64[4] = 0xfe; 50 - eui64[0] |= 0x02; 51 52 i = 0; 53 while (ipv6_hdr(skb)->saddr.s6_addr[8 + i] == eui64[i]
··· 47 memcpy(eui64 + 5, eth_hdr(skb)->h_source + 3, 3); 48 eui64[3] = 0xff; 49 eui64[4] = 0xfe; 50 + eui64[0] ^= 0x02; 51 52 i = 0; 53 while (ipv6_hdr(skb)->saddr.s6_addr[8 + i] == eui64[i]