Skip to content

Commit

Permalink
Cleanup comments left over from #4830 (#4883)
Browse files Browse the repository at this point in the history
This cleans up two lines of commented out code leftover from verifying
the localhost test.
  • Loading branch information
jellefoks authored Feb 10, 2025
1 parent 6d732f2 commit c2299f2
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -219,12 +219,10 @@ SB_EXPORT int __abi_wrap_getaddrinfo(const char* node,
struct sockaddr_in* address =
reinterpret_cast<struct sockaddr_in*>(musl_ai->ai_addr);
address->sin_addr.s_addr = htonl(INADDR_LOOPBACK);
// address->sin_addr.s_addr = -1;
} else if (family == MUSL_AF_INET6) {
struct sockaddr_in6* address =
reinterpret_cast<struct sockaddr_in6*>(musl_ai->ai_addr);
address->sin6_addr = IN6ADDR_LOOPBACK_INIT;
// address->sin6_addr.__in6_u.__u6_addr8[0] = 5;
}
if (*res == nullptr) {
*res = musl_ai;
Expand Down

0 comments on commit c2299f2

Please sign in to comment.