all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [PATCH] Fmake_network_process fix swapped arguments
@ 2016-05-02 19:53 Aaron Conole
  2016-05-02 21:40 ` Lars Ingebrigtsen
  0 siblings, 1 reply; 2+ messages in thread
From: Aaron Conole @ 2016-05-02 19:53 UTC (permalink / raw)
  To: emacs-devel

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.

---
 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);
 
-- 
2.5.5




^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] Fmake_network_process fix swapped arguments
  2016-05-02 19:53 [PATCH] Fmake_network_process fix swapped arguments Aaron Conole
@ 2016-05-02 21:40 ` Lars Ingebrigtsen
  0 siblings, 0 replies; 2+ messages in thread
From: Lars Ingebrigtsen @ 2016-05-02 21:40 UTC (permalink / raw)
  To: Aaron Conole; +Cc: emacs-devel

Aaron Conole <aconole@bytheb.org> writes:

> 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.

Thanks; applied.

-- 
(domestic pets only, the antidote for overdose, milk.)
   bloggy blog: http://lars.ingebrigtsen.no



^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2016-05-02 21:40 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-05-02 19:53 [PATCH] Fmake_network_process fix swapped arguments Aaron Conole
2016-05-02 21:40 ` Lars Ingebrigtsen

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.