]> git.eshelyaron.com Git - emacs.git/commitdiff
Boot parameter check fix
authorLars Ingebrigtsen <larsi@gnus.org>
Tue, 2 Feb 2016 01:52:03 +0000 (02:52 +0100)
committerLars Ingebrigtsen <larsi@gnus.org>
Tue, 2 Feb 2016 01:52:03 +0000 (02:52 +0100)
* process.c (send_process): Fix test for boot parameters noted
by Andy Moreton.

src/process.c

index 14be3b0f9c333b2097397c80bddfd7c519a5b8ed..762778e529346d2782b5d6f9c12e8ec45efe2055 100644 (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