mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 08:07:34 +00:00
LibC: Remove debug spam in getaddrinfo()
This commit is contained in:
parent
a22323ecce
commit
3ec71e1400
1 changed files with 0 additions and 2 deletions
|
@ -641,8 +641,6 @@ static bool fill_getproto_buffers(const char* line, ssize_t read)
|
||||||
|
|
||||||
int getaddrinfo(const char* __restrict node, const char* __restrict service, const struct addrinfo* __restrict hints, struct addrinfo** __restrict res)
|
int getaddrinfo(const char* __restrict node, const char* __restrict service, const struct addrinfo* __restrict hints, struct addrinfo** __restrict res)
|
||||||
{
|
{
|
||||||
dbgln("getaddrinfo: node={}, service={}, hints->ai_family={}", (const char*)node, (const char*)service, hints ? hints->ai_family : 0);
|
|
||||||
|
|
||||||
*res = nullptr;
|
*res = nullptr;
|
||||||
|
|
||||||
if (hints && hints->ai_family != AF_INET && hints->ai_family != AF_UNSPEC)
|
if (hints && hints->ai_family != AF_INET && hints->ai_family != AF_UNSPEC)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue