aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/process.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/process.c b/src/process.c
index 1f83327b3c2..79f807284a0 100644
--- a/src/process.c
+++ b/src/process.c
@@ -4733,7 +4733,7 @@ wait_for_socket_fds (Lisp_Object process, char *name)
4733 while (XPROCESS (process)->infd < 0 && 4733 while (XPROCESS (process)->infd < 0 &&
4734 EQ (XPROCESS (process)->status, Qconnect)) 4734 EQ (XPROCESS (process)->status, Qconnect))
4735 { 4735 {
4736 printf("Waiting for socket from %s...\n", name); 4736 add_to_log ("Waiting for socket from %s...\n", name);
4737 wait_reading_process_output (0, 20 * 1000 * 1000, 0, 0, Qnil, NULL, 0); 4737 wait_reading_process_output (0, 20 * 1000 * 1000, 0, 0, Qnil, NULL, 0);
4738 } 4738 }
4739} 4739}
@@ -4743,7 +4743,7 @@ wait_while_connecting (Lisp_Object process)
4743{ 4743{
4744 while (EQ (XPROCESS (process)->status, Qconnect)) 4744 while (EQ (XPROCESS (process)->status, Qconnect))
4745 { 4745 {
4746 printf("Waiting for connection...\n"); 4746 add_to_log ("Waiting for connection...\n");
4747 wait_reading_process_output (0, 20 * 1000 * 1000, 0, 0, Qnil, NULL, 0); 4747 wait_reading_process_output (0, 20 * 1000 * 1000, 0, 0, Qnil, NULL, 0);
4748 } 4748 }
4749} 4749}
@@ -4755,7 +4755,7 @@ wait_for_tls_negotiation (Lisp_Object process)
4755 while (XPROCESS (process)->gnutls_p && 4755 while (XPROCESS (process)->gnutls_p &&
4756 XPROCESS (process)->gnutls_initstage != GNUTLS_STAGE_READY) 4756 XPROCESS (process)->gnutls_initstage != GNUTLS_STAGE_READY)
4757 { 4757 {
4758 printf("Waiting for TLS...\n"); 4758 add_to_log ("Waiting for TLS...\n");
4759 wait_reading_process_output (0, 20 * 1000 * 1000, 0, 0, Qnil, NULL, 0); 4759 wait_reading_process_output (0, 20 * 1000 * 1000, 0, 0, Qnil, NULL, 0);
4760 } 4760 }
4761#endif 4761#endif