diff options
| author | Paul Eggert | 2013-11-04 21:32:19 -0800 |
|---|---|---|
| committer | Paul Eggert | 2013-11-04 21:32:19 -0800 |
| commit | 693698093480628b7438ca0fd1614b00acfd1137 (patch) | |
| tree | 8c371136f57cbb561ccadb1bf92de7404c42654b /src/process.c | |
| parent | 2d748773b27daf6a8462705f382aa48942e3c883 (diff) | |
| download | emacs-693698093480628b7438ca0fd1614b00acfd1137.tar.gz emacs-693698093480628b7438ca0fd1614b00acfd1137.zip | |
Fix recent gnutls changes.
* gnutls.c (Fgnutls_boot): Don't assume C99.
* process.c (wait_reading_process_output): Fix typo in recent change.
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 ec4cda77e1c..c0c522a1403 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -4623,7 +4623,7 @@ wait_reading_process_output (intmax_t time_limit, int nsecs, int read_kbd, | |||
| 4623 | { | 4623 | { |
| 4624 | /* Check this specific channel. */ | 4624 | /* Check this specific channel. */ |
| 4625 | if (wait_proc->gnutls_p /* Check for valid process. */ | 4625 | if (wait_proc->gnutls_p /* Check for valid process. */ |
| 4626 | && p->gnutls_state | 4626 | && wait_proc->gnutls_state |
| 4627 | /* Do we have pending data? */ | 4627 | /* Do we have pending data? */ |
| 4628 | && ((emacs_gnutls_record_check_pending | 4628 | && ((emacs_gnutls_record_check_pending |
| 4629 | (wait_proc->gnutls_state)) | 4629 | (wait_proc->gnutls_state)) |