emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] master 97c05cc: Correct server/client address


From: Chris Feng
Subject: [Emacs-diffs] master 97c05cc: Correct server/client address
Date: Fri, 13 May 2016 03:35:12 +0000 (UTC)

branch: master
commit 97c05cc892af85abd9438d2f685d08c557a0d9fb
Author: Chris Feng <address@hidden>
Commit: Chris Feng <address@hidden>

    Correct server/client address
    
    * src/process.c (Fmake_network_process): :local is for servers and :remote
    is for clients.
---
 src/process.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/process.c b/src/process.c
index 3e66949..eed875d 100644
--- a/src/process.c
+++ b/src/process.c
@@ -3652,7 +3652,7 @@ usage: (make-network-process &rest ARGS)  */)
 
   /* :local ADDRESS or :remote ADDRESS */
   tem = Fplist_get (contact, QCserver);
-  if (!NILP (tem))
+  if (NILP (tem))
     address = Fplist_get (contact, QCremote);
   else
     address = Fplist_get (contact, QClocal);



reply via email to

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