Fixed sparse warnings about integer vs. pointer use

The configuration parsing functions seemed to have worked fine before,
but these were real bugs even if they did not show up in practice.
hostapd_ip_diff() was broken for IPv6 addresses (overwrote address and
always returned 1.
This commit is contained in:
Jouni Malinen 2009-01-03 20:46:32 +02:00
parent d953d9ab80
commit 5306f43fc3
2 changed files with 4 additions and 5 deletions

View file

@ -53,8 +53,7 @@ int hostapd_ip_diff(struct hostapd_ip_addr *a, struct hostapd_ip_addr *b)
break;
#ifdef CONFIG_IPV6
case AF_INET6:
if (os_memcpy(&a->u.v6, &b->u.v6, sizeof(a->u.v6))
!= 0)
if (os_memcmp(&a->u.v6, &b->u.v6, sizeof(a->u.v6)) != 0)
return 1;
break;
#endif /* CONFIG_IPV6 */