emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] master 4639bc9 1/2: Fix the call to set_network_coding_sys


From: Lars Ingebrigtsen
Subject: [Emacs-diffs] master 4639bc9 1/2: Fix the call to set_network_coding_system
Date: Mon, 02 May 2016 21:42:34 +0000

branch: master
commit 4639bc99d677aef2583200c4aa8e4cf53a29ecb9
Author: Aaron Conole <address@hidden>
Commit: Lars Ingebrigtsen <address@hidden>

    Fix the call to set_network_coding_system
    
    * src/process.c (Fmake_network_process): A recent commit
    modified the set_network_socket_coding_system function to take
    arguments host, service, and name. However, those arguments
    appear to be swapped.
    
      Copyright-paperwork-exempt: yes
---
 src/process.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/process.c b/src/process.c
index 9f2d379..2d0fb56 100644
--- a/src/process.c
+++ b/src/process.c
@@ -3910,7 +3910,7 @@ usage: (make-network-process &rest ARGS)  */)
   p->gnutls_boot_parameters = tem;
 #endif
 
-  set_network_socket_coding_system (proc, service, host, name);
+  set_network_socket_coding_system (proc, host, service, name);
 
   unbind_to (count, Qnil);
 



reply via email to

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