(WiiU) Buildfix 2 (#14104)

This commit is contained in:
Cthulhu-throwaway 2022-06-25 14:47:23 -03:00 committed by GitHub
parent e961f27786
commit bc78e423ee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -232,7 +232,9 @@ failure:
switch (addr->ifa_addr->sa_family)
{
case AF_INET:
#ifdef HAVE_INET6
case AF_INET6:
#endif
interfaces++;
break;
default:
@ -269,9 +271,11 @@ failure:
case AF_INET:
addrlen = sizeof(struct sockaddr_in);
break;
#ifdef HAVE_INET6
case AF_INET6:
addrlen = sizeof(struct sockaddr_in6);
break;
#endif
default:
continue;
}