diff options
| author | Lars Ingebrigtsen | 2016-02-02 02:52:03 +0100 |
|---|---|---|
| committer | Lars Ingebrigtsen | 2016-02-02 02:52:03 +0100 |
| commit | 3955d6c692d8ef5a0873b42556d8284263ca5794 (patch) | |
| tree | 5bcc19cce495230e2e35e0d5704d91659f6505c7 /src/process.c | |
| parent | b75f46418651bee07ad6433ba95602a78ff19e94 (diff) | |
| download | emacs-3955d6c692d8ef5a0873b42556d8284263ca5794.tar.gz emacs-3955d6c692d8ef5a0873b42556d8284263ca5794.zip | |
Boot parameter check fix
* process.c (send_process): Fix test for boot parameters noted
by Andy Moreton.
Diffstat (limited to 'src/process.c')
| -rw-r--r-- | src/process.c | 2 |
1 files changed, 1 insertions, 1 deletions
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, | |||
| 5904 | #ifdef HAVE_GNUTLS | 5904 | #ifdef HAVE_GNUTLS |
| 5905 | /* The TLS connection hasn't been set up yet, so we can't write | 5905 | /* The TLS connection hasn't been set up yet, so we can't write |
| 5906 | anything on the socket. */ | 5906 | anything on the socket. */ |
| 5907 | if (p->gnutls_boot_parameters) | 5907 | if (!NILP (p->gnutls_boot_parameters)) |
| 5908 | return; | 5908 | return; |
| 5909 | #endif | 5909 | #endif |
| 5910 | 5910 | ||