From 3955d6c692d8ef5a0873b42556d8284263ca5794 Mon Sep 17 00:00:00 2001 From: Lars Ingebrigtsen Date: Tue, 2 Feb 2016 02:52:03 +0100 Subject: [PATCH] Boot parameter check fix * process.c (send_process): Fix test for boot parameters noted by Andy Moreton. --- src/process.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/process.c b/src/process.c index 14be3b0f9c3..762778e5293 100644 --- a/src/process.c +++ b/src/process.c @@ -5904,7 +5904,7 @@ send_process (Lisp_Object proc, const char *buf, ptrdiff_t len, #ifdef HAVE_GNUTLS /* The TLS connection hasn't been set up yet, so we can't write anything on the socket. */ - if (p->gnutls_boot_parameters) + if (!NILP (p->gnutls_boot_parameters)) return; #endif -- 2.39.5