Boot parameter check fix
* process.c (send_process): Fix test for boot parameters noted by Andy Moreton.
This commit is contained in:
parent
b75f464186
commit
3955d6c692
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue