aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Ingebrigtsen2016-02-22 15:29:15 +1100
committerLars Ingebrigtsen2016-02-22 15:29:15 +1100
commit87e9e1b61cd4c0356e7f357f5cee6c226dc6fd35 (patch)
tree5bf267711c002d79f2122bc3211e24b3d8722ec5
parent6bdd366db88a11de3ca1eab38e5091f84fad9806 (diff)
downloademacs-87e9e1b61cd4c0356e7f357f5cee6c226dc6fd35.tar.gz
emacs-87e9e1b61cd4c0356e7f357f5cee6c226dc6fd35.zip
Fix async TLS boot problem
* src/process.c (wait_reading_process_output): Verify the boot of the correct process.
-rw-r--r--src/process.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/process.c b/src/process.c
index 7679f69b989..5172518ac6b 100644
--- a/src/process.c
+++ b/src/process.c
@@ -4927,7 +4927,7 @@ wait_reading_process_output (intmax_t time_limit, int nsecs, int read_kbd,
4927 4927
4928 if (p->gnutls_initstage == GNUTLS_STAGE_READY) 4928 if (p->gnutls_initstage == GNUTLS_STAGE_READY)
4929 { 4929 {
4930 gnutls_verify_boot (proc, Qnil); 4930 gnutls_verify_boot (aproc, Qnil);
4931 finish_after_tls_connection (aproc); 4931 finish_after_tls_connection (aproc);
4932 } 4932 }
4933 else if (p->gnutls_handshakes_tried > 4933 else if (p->gnutls_handshakes_tried >