Author: brane
Date: Sun Jul 27 16:39:08 2025
New Revision: 1927494
Log:
Fix fallout from r1927493. This is what happens if one tests with IPv6
disabled and forgets about it later...
* test/test_context.c
(test_async_resolve_ipv6,
test_async_resolve_ipv64): Call the correct generic test function.
Modified:
serf/trunk/test/test_context.c
Modified: serf/trunk/test/test_context.c
==============================================================================
--- serf/trunk/test/test_context.c Sun Jul 27 16:33:15 2025
(r1927493)
+++ serf/trunk/test/test_context.c Sun Jul 27 16:39:08 2025
(r1927494)
@@ -1161,14 +1161,14 @@ static void test_async_resolve_ipv4(CuTe
static void test_async_resolve_ipv6(CuTest *tc)
{
#if APR_HAVE_IPV6
- async_resolve_ip(tc, "http://[::1]:8080/");
+ async_resolve(tc, "http://[::1]:8080/");
#endif
}
static void test_async_resolve_ipv64(CuTest *tc)
{
#if APR_HAVE_IPV6
- async_resolve_ip(tc, "http://[::ffff:127.0.0.1]:8080/");
+ async_resolve(tc, "http://[::ffff:127.0.0.1]:8080/");
#endif
}