diff options
Diffstat (limited to 'auto_tests/network_test.c')
-rw-r--r-- | auto_tests/network_test.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/auto_tests/network_test.c b/auto_tests/network_test.c index 35209bea..3b4b50cd 100644 --- a/auto_tests/network_test.c +++ b/auto_tests/network_test.c | |||
@@ -112,7 +112,8 @@ 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, |
116 | "IN6_IS_ADDR_V4MAPPED(::ffff:127.0.0.1): expected != 0, got 0."); | ||
116 | 117 | ||
117 | res = ip_equal(&ip1, &ip2); | 118 | 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."); | 119 | 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."); |