mirror of
https://git.freebsd.org/ports.git
synced 2025-04-28 09:36:41 -04:00
This update also removes the --audio-backend command line switch in favor of an actual setting in the browser that can be changed at chrome://flags/#audio-backend Security: https://vuxml.freebsd.org/freebsd/15d398ea-4f73-11ef-8a0f-a8a1599412c6.html
16 lines
494 B
C++
16 lines
494 B
C++
--- net/dns/address_info.cc.orig 2024-07-30 11:12:21 UTC
|
|
+++ net/dns/address_info.cc
|
|
@@ -83,8 +83,12 @@ AddressInfo::AddressInfoAndResult AddressInfo::Get(
|
|
// error.
|
|
// http://crbug.com/134142
|
|
err = ERR_NAME_NOT_RESOLVED;
|
|
-#elif BUILDFLAG(IS_POSIX) && !BUILDFLAG(IS_FREEBSD)
|
|
+#elif BUILDFLAG(IS_POSIX)
|
|
+#ifdef EAI_NODATA
|
|
if (os_error != EAI_NONAME && os_error != EAI_NODATA)
|
|
+#else
|
|
+ if (os_error != EAI_NONAME)
|
|
+#endif
|
|
err = ERR_NAME_RESOLUTION_FAILED;
|
|
#endif
|
|
|