emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] feature/async-dns 56cd530 2/4: Windows build fix


From: Lars Ingebrigtsen
Subject: [Emacs-diffs] feature/async-dns 56cd530 2/4: Windows build fix
Date: Mon, 01 Feb 2016 02:07:06 +0000

branch: feature/async-dns
commit 56cd5301f1ec70958fa0c2e51ce58c674e800a50
Author: Lars Ingebrigtsen <address@hidden>
Commit: Lars Ingebrigtsen <address@hidden>

    Windows build fix
    
    * process.c (Fmake_network_process): Build fix for systems
    without local sockets.
---
 src/process.c |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/src/process.c b/src/process.c
index b91e1c9..6b76559 100644
--- a/src/process.c
+++ b/src/process.c
@@ -3587,7 +3587,9 @@ usage: (make-network-process &rest ARGS)  */)
     {
       /* The "connection" function gets it bind info from the address we're
         given, so use this dummy address if nothing is specified. */
+#ifdef HAVE_LOCAL_SOCKETS
       if (family != AF_LOCAL)
+#endif
        host = build_string ("127.0.0.1");
     }
   else



reply via email to

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