Fix compilation of saned.c under OS X

merge-requests/1/head
Yurii Kolesnykov 2016-06-25 03:34:12 +03:00 zatwierdzone przez Olaf Meeuwissen
rodzic ad176ba9fe
commit 00984cd111
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -792,7 +792,7 @@ check_host (int fd)
#ifdef ENABLE_IPV6
sin6 = &remote_address.sin6;
if (IN6_IS_ADDR_V4MAPPED (sin6->sin6_addr.s6_addr))
if (IN6_IS_ADDR_V4MAPPED ((struct in6_addr *)sin6->sin6_addr.s6_addr))
{
DBG (DBG_DBG, "check_host: detected an IPv4-mapped address\n");
remote_ipv4 = remote_ip + 7;
@ -849,7 +849,7 @@ check_host (int fd)
break;
#ifdef ENABLE_IPV6
case AF_INET6:
if (IN6_IS_ADDR_LOOPBACK (sin6->sin6_addr.s6_addr))
if (IN6_IS_ADDR_LOOPBACK ((struct in6_addr *)sin6->sin6_addr.s6_addr))
{
DBG (DBG_MSG,
"check_host: remote host is IN6_LOOPBACK: access granted\n");