From f1162e4df16b86a8124e7979823ba011327f3bb4 Mon Sep 17 00:00:00 2001 From: Edward Emelianov Date: Mon, 25 May 2026 11:49:36 +0300 Subject: [PATCH] fix --- socket.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/socket.c b/socket.c index 300d5b4..308245d 100644 --- a/socket.c +++ b/socket.c @@ -738,7 +738,7 @@ int sl_sock_open(sl_socktype_e type, const char *path, int isserver, int ai_sock } }else{ if(connect(sock, p->ai_addr, p->ai_addrlen) == -1){ - WARN("connect()"); + //WARN("connect()"); close(sock); sock = -1; continue; }