Boot parameter check fix

* process.c (send_process): Fix test for boot parameters noted
by Andy Moreton.
This commit is contained in:
Lars Ingebrigtsen 2016-02-02 02:52:03 +01:00
parent b75f464186
commit 3955d6c692

View file

@ -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