summaryrefslogtreecommitdiff
path: root/auto_tests/network_test.c
diff options
context:
space:
mode:
Diffstat (limited to 'auto_tests/network_test.c')
-rw-r--r--auto_tests/network_test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/auto_tests/network_test.c b/auto_tests/network_test.c
index 35209bea..bf6ef17a 100644
--- a/auto_tests/network_test.c
+++ b/auto_tests/network_test.c
@@ -112,7 +112,7 @@ START_TEST(test_ip_equal)
112 ip2.ip6.uint32[2] = htonl(0xFFFF); 112 ip2.ip6.uint32[2] = htonl(0xFFFF);
113 ip2.ip6.uint32[3] = htonl(0x7F000001); 113 ip2.ip6.uint32[3] = htonl(0x7F000001);
114 114
115 ck_assert_msg(IN6_IS_ADDR_V4MAPPED(&ip2.ip6) != 0, "IN6_IS_ADDR_V4MAPPED(::ffff:127.0.0.1): expected != 0, got 0."); 115 ck_assert_msg(IN6_IS_ADDR_V4MAPPED(&ip2.ip6.in6_addr) != 0, "IN6_IS_ADDR_V4MAPPED(::ffff:127.0.0.1): expected != 0, got 0.");
116 116
117 res = ip_equal(&ip1, &ip2); 117 res = ip_equal(&ip1, &ip2);
118 ck_assert_msg(res != 0, "ip_equal( {AF_INET, 127.0.0.1}, {AF_INET6, ::ffff:127.0.0.1} ): expected result != 0, got 0."); 118 ck_assert_msg(res != 0, "ip_equal( {AF_INET, 127.0.0.1}, {AF_INET6, ::ffff:127.0.0.1} ): expected result != 0, got 0.");