emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/trunk r104004: Fix typo in GnuTLS W32 suppo


From: Ted Zlatanov
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r104004: Fix typo in GnuTLS W32 support.
Date: Mon, 25 Apr 2011 07:48:24 -0500
User-agent: Bazaar (2.3.1)

------------------------------------------------------------
revno: 104004
committer: Ted Zlatanov <address@hidden>
branch nick: quickfixes
timestamp: Mon 2011-04-25 07:48:24 -0500
message:
  Fix typo in GnuTLS W32 support.
  
  * w32.c (emacs_gnutls_push): Fix typo.
modified:
  src/ChangeLog
  src/w32.c
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2011-04-25 10:42:57 +0000
+++ b/src/ChangeLog     2011-04-25 12:48:24 +0000
@@ -1,3 +1,7 @@
+2011-04-25  Teodor Zlatanov  <address@hidden>
+
+       * w32.c (emacs_gnutls_push): Fix typo.
+
 2011-04-25  Eli Zaretskii  <address@hidden>
 
        * gnutls.c (emacs_gnutls_handshake): Avoid compiler warnings about

=== modified file 'src/w32.c'
--- a/src/w32.c 2011-04-25 01:30:51 +0000
+++ b/src/w32.c 2011-04-25 12:48:24 +0000
@@ -6176,7 +6176,7 @@
 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.  */


reply via email to

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