citrun

watch C/C++ source code execute
Log | Files | Refs | LICENSE

commit 8580a74cbe82bd224fb03b912dadbd18a1557d11
parent a5c84b026726aac61a9f8abaf46837701f94b2a5
Author: Kyle Milz <kyle@0x30.net>
Date:   Thu, 30 Jun 2016 23:14:13 -0600

lib: don't complain when connect() fails

Diffstat:
Mlib/runtime.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/runtime.c b/lib/runtime.c @@ -216,7 +216,7 @@ relay_thread(void *arg) while (1) { if (connect(fd, (struct sockaddr *)&addr, sizeof(addr))) { - warn("connect"); + /* warn("connect"); */ sleep(1); continue; }