]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix typo in GnuTLS W32 support.
authorTed Zlatanov <tzz@lifelogs.com>
Mon, 25 Apr 2011 12:48:24 +0000 (07:48 -0500)
committerTed Zlatanov <tzz@lifelogs.com>
Mon, 25 Apr 2011 12:48:24 +0000 (07:48 -0500)
* w32.c (emacs_gnutls_push): Fix typo.

src/ChangeLog
src/w32.c

index 9166fe1822f78bc3cf4f52dcd75097cbf7ad0fcc..0350d36ea06bbe8f799be8ba154bd505bfa19428 100644 (file)
@@ -1,3 +1,7 @@
+2011-04-25  Teodor Zlatanov  <tzz@lifelogs.com>
+
+       * w32.c (emacs_gnutls_push): Fix typo.
+
 2011-04-25  Eli Zaretskii  <eliz@gnu.org>
 
        * gnutls.c (emacs_gnutls_handshake): Avoid compiler warnings about
index 065d730333bad1e6f5b275e9276c1603bb866016..2fbb3b6cb4ca1244ce0809f2a2261eeb79f2a97e 100644 (file)
--- a/src/w32.c
+++ b/src/w32.c
@@ -6176,7 +6176,7 @@ ssize_t
 emacs_gnutls_push (gnutls_transport_ptr_t p, const void* buf, size_t sz)
 {
   struct Lisp_Process *process = (struct Lisp_Process *)p;
-  int fd = proc->outfd;
+  int fd = process->outfd;
   ssize_t n = sys_write(fd, buf, sz);
 
   /* 0 or more bytes written means everything went fine.  */