From: Lars Ingebrigtsen Date: Tue, 2 Feb 2016 01:52:03 +0000 (+0100) Subject: Boot parameter check fix X-Git-Tag: emacs-26.0.90~2520^2~35 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=3955d6c692d8ef5a0873b42556d8284263ca5794;p=emacs.git Boot parameter check fix * process.c (send_process): Fix test for boot parameters noted by Andy Moreton. --- 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