tests: virnetsockettest: Print the error if getifaddrs fails.

This commit is contained in:
Richard W.M. Jones 2014-01-01 15:49:53 +00:00
parent fe881ae086
commit fb004207fa

View File

@ -60,8 +60,10 @@ checkProtocols(bool *hasIPv4, bool *hasIPv6,
*hasIPv4 = *hasIPv6 = false;
*freePort = 0;
if (getifaddrs(&ifaddr) < 0)
if (getifaddrs(&ifaddr) < 0) {
perror ("getifaddrs");
goto cleanup;
}
for (ifa = ifaddr; ifa != NULL; ifa = ifa->ifa_next) {
if (!ifa->ifa_addr)