[libvirt] [PATCH 1/3] tests: virnetsockettest: Print the error if getifaddrs fails.

Richard W.M. Jones rjones at redhat.com
Wed Jan 1 15:49:53 UTC 2014


From: "Richard W.M. Jones" <rjones at redhat.com>

---
 tests/virnetsockettest.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/tests/virnetsockettest.c b/tests/virnetsockettest.c
index eda95bc..82c202e 100644
--- a/tests/virnetsockettest.c
+++ b/tests/virnetsockettest.c
@@ -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)
-- 
1.8.3.1




More information about the libvir-list mailing list