From db3fbe5e20c42c1034192d69ee5ccebdcfb57e96 Mon Sep 17 00:00:00 2001 From: Alain Schneble Date: Sun, 21 Feb 2016 12:02:02 +0100 Subject: [PATCH] Remove async DNS printf debug statements * src/process.c (make-network-process, wait_for_socket_fds, wait_while_connecting, wait_for_tls_negotiation): Remove printf debug statements. --- src/process.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/process.c b/src/process.c index 1f83327..6040be0 100644 --- a/src/process.c +++ b/src/process.c @@ -3777,7 +3777,6 @@ usage: (make-network-process &rest ARGS) */) { int ret; - printf("Async DNS for '%s'\n", SSDATA (host)); dns_requests = xmalloc (sizeof (struct gaicb*)); dns_requests[0] = xmalloc (sizeof (struct gaicb)); dns_requests[0]->ar_name = strdup (SSDATA (host)); @@ -4733,7 +4732,6 @@ wait_for_socket_fds (Lisp_Object process, char *name) while (XPROCESS (process)->infd < 0 && EQ (XPROCESS (process)->status, Qconnect)) { - printf("Waiting for socket from %s...\n", name); wait_reading_process_output (0, 20 * 1000 * 1000, 0, 0, Qnil, NULL, 0); } } @@ -4743,7 +4741,6 @@ wait_while_connecting (Lisp_Object process) { while (EQ (XPROCESS (process)->status, Qconnect)) { - printf("Waiting for connection...\n"); wait_reading_process_output (0, 20 * 1000 * 1000, 0, 0, Qnil, NULL, 0); } } @@ -4755,7 +4752,6 @@ wait_for_tls_negotiation (Lisp_Object process) while (XPROCESS (process)->gnutls_p && XPROCESS (process)->gnutls_initstage != GNUTLS_STAGE_READY) { - printf("Waiting for TLS...\n"); wait_reading_process_output (0, 20 * 1000 * 1000, 0, 0, Qnil, NULL, 0); } #endif -- 2.6.2.windows.1