diff options
| author | Ted Zlatanov | 2011-04-25 07:48:24 -0500 |
|---|---|---|
| committer | Ted Zlatanov | 2011-04-25 07:48:24 -0500 |
| commit | 42ce4c631e0d9291399dac0e9787ce2fbb97c8eb (patch) | |
| tree | 980c4702a02ed2a6d54e5b537615be4e1d8bb0ba /src/w32.c | |
| parent | fb11d64dc8597a529688bc8bcaa7f3da4b538dc4 (diff) | |
| download | emacs-42ce4c631e0d9291399dac0e9787ce2fbb97c8eb.tar.gz emacs-42ce4c631e0d9291399dac0e9787ce2fbb97c8eb.zip | |
Fix typo in GnuTLS W32 support.
* w32.c (emacs_gnutls_push): Fix typo.
Diffstat (limited to 'src/w32.c')
| -rw-r--r-- | src/w32.c | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -6176,7 +6176,7 @@ ssize_t | |||
| 6176 | emacs_gnutls_push (gnutls_transport_ptr_t p, const void* buf, size_t sz) | 6176 | emacs_gnutls_push (gnutls_transport_ptr_t p, const void* buf, size_t sz) |
| 6177 | { | 6177 | { |
| 6178 | struct Lisp_Process *process = (struct Lisp_Process *)p; | 6178 | struct Lisp_Process *process = (struct Lisp_Process *)p; |
| 6179 | int fd = proc->outfd; | 6179 | int fd = process->outfd; |
| 6180 | ssize_t n = sys_write(fd, buf, sz); | 6180 | ssize_t n = sys_write(fd, buf, sz); |
| 6181 | 6181 | ||
| 6182 | /* 0 or more bytes written means everything went fine. */ | 6182 | /* 0 or more bytes written means everything went fine. */ |