Update to v12.15.0 Support Python3 : https://github.com/openwrt/packages/issues/8893 Preparing to deprecate nosnapshot builds. Signed-off-by: Hirokazu MORIKAWA <morikw2@gmail.com>
10 lines
341 B
Diff
10 lines
341 B
Diff
--- a/deps/uv/src/unix/getaddrinfo.c
|
|
+++ b/deps/uv/src/unix/getaddrinfo.c
|
|
@@ -103,6 +103,7 @@
|
|
int err;
|
|
|
|
req = container_of(w, uv_getaddrinfo_t, work_req);
|
|
+ req->hints->ai_flags &= ~AI_V4MAPPED;
|
|
err = getaddrinfo(req->hostname, req->service, req->hints, &req->addrinfo);
|
|
req->retcode = uv__getaddrinfo_translate_error(err);
|
|
}
|