From 304ccacc1356e298f0cae9784167a21c5353029e Mon Sep 17 00:00:00 2001 From: Guillermo Rodriguez Garcia Date: Wed, 27 Oct 1999 17:03:07 +0000 Subject: [PATCH] removed debugging code which shouldn't be there :-) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4218 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/unix/gsocket.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/unix/gsocket.c b/src/unix/gsocket.c index 8b8b05b973..aa11434540 100644 --- a/src/unix/gsocket.c +++ b/src/unix/gsocket.c @@ -485,12 +485,10 @@ GSocketError GSocket_Connect(GSocket *sck, GSocketStream stream) close(sck->m_fd); sck->m_fd = -1; /* sck->m_error is set in _GSocket_Output_Timeout */ - fprintf(stderr, "Blocking connect timeouts\n"); return GSOCK_TIMEDOUT; } else { - fprintf(stderr, "Blocking connect OK\n"); return GSOCK_NOERROR; } } @@ -505,7 +503,6 @@ GSocketError GSocket_Connect(GSocket *sck, GSocketStream stream) { sck->m_error = GSOCK_WOULDBLOCK; sck->m_establishing = TRUE; - fprintf(stderr, "Nonblocking connect in progress\n"); return GSOCK_WOULDBLOCK; } @@ -517,11 +514,9 @@ GSocketError GSocket_Connect(GSocket *sck, GSocketStream stream) sck->m_fd = -1; sck->m_error = GSOCK_IOERR; - fprintf(stderr, "Connect failed (generic err)\n"); return GSOCK_IOERR; } - fprintf(stderr, "Connect OK\n"); return GSOCK_NOERROR; }