Skip to content

Commit

Permalink
Workaround unimportant linker error on xb1
Browse files Browse the repository at this point in the history
  • Loading branch information
kaidokert committed Aug 21, 2024
1 parent 17d07be commit 0520332
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion third_party/boringssl/src/tool/transport_common.cc
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ bool Listener::Init(const std::string &port) {
// Windows' IN6ADDR_ANY_INIT does not have enough curly braces for clang-cl
// (https://crbug.com/772108), while other platforms like NaCl are missing
// in6addr_any, so use a mix of both.
#if defined(OPENSSL_WINDOWS)
#if defined(OPENSSL_WINDOWS) && !defined(STARBOARD)
addr.sin6_addr = in6addr_any;
#else
addr.sin6_addr = IN6ADDR_ANY_INIT;
Expand Down

0 comments on commit 0520332

Please sign in to comment.