--- cygserver_transport_sockets.cc 2002-06-10 23:55:44.000000000 +0100 +++ /pack/src/cygwin/HEAD.src/winsup/cygwin/cygserver_transport_sockets.cc 2002-06-10 23:51:32.000000000 +0100 @@ -125,7 +125,7 @@ fd = cygwin_socket (AF_UNIX, SOCK_STREAM, 0); if (cygwin_connect (fd, &sockdetails, sdlen) < 0) { - system_printf("client connect failure %d", errno); + debug_printf("client connect failure %d", errno); ::close (fd); return false; } --- cygserver_transport_pipes.cc 2002-06-10 23:55:31.000000000 +0100 +++ /pack/src/cygwin/HEAD.src/winsup/cygwin/cygserver_transport_pipes.cc 2002-06-10 23:51:32.000000000 +0100 @@ -175,7 +175,7 @@ if (GetLastError () != ERROR_PIPE_BUSY) { - system_printf ("Error opening the pipe (%lu)", GetLastError ()); + debug_printf ("Error opening the pipe (%lu)", GetLastError ()); pipe = NULL; return false; }