]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix the call to set_network_coding_system
authorAaron Conole <aconole@bytheb.org>
Mon, 2 May 2016 21:40:14 +0000 (23:40 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Mon, 2 May 2016 21:40:14 +0000 (23:40 +0200)
* 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

index 9f2d379c330f8395b5628d28e8ee9934f32a9497..2d0fb567943f7e4547b1edd44a2e0b9a105f4327 100644 (file)
@@ -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);