emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] feature/async-dns 3955d6c: Boot parameter check fix


From: Lars Ingebrigtsen
Subject: [Emacs-diffs] feature/async-dns 3955d6c: Boot parameter check fix
Date: Tue, 02 Feb 2016 01:52:13 +0000

branch: feature/async-dns
commit 3955d6c692d8ef5a0873b42556d8284263ca5794
Author: Lars Ingebrigtsen <address@hidden>
Commit: Lars Ingebrigtsen <address@hidden>

    Boot parameter check fix
    
    * process.c (send_process): Fix test for boot parameters noted
    by Andy Moreton.
---
 src/process.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/process.c b/src/process.c
index 14be3b0..762778e 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
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]