aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLars Ingebrigtsen2016-02-01 01:19:42 +0100
committerLars Ingebrigtsen2016-02-01 01:19:42 +0100
commit56cd5301f1ec70958fa0c2e51ce58c674e800a50 (patch)
treeb203fd78bbd27618b156e81023cf670d24271b39 /src
parentb11531e99ffb65c99d0cc162bf03497b87fbd347 (diff)
downloademacs-56cd5301f1ec70958fa0c2e51ce58c674e800a50.tar.gz
emacs-56cd5301f1ec70958fa0c2e51ce58c674e800a50.zip
Windows build fix
* process.c (Fmake_network_process): Build fix for systems without local sockets.
Diffstat (limited to 'src')
-rw-r--r--src/process.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/process.c b/src/process.c
index b91e1c97a97..6b76559f309 100644
--- a/src/process.c
+++ b/src/process.c
@@ -3587,7 +3587,9 @@ usage: (make-network-process &rest ARGS) */)
3587 { 3587 {
3588 /* The "connection" function gets it bind info from the address we're 3588 /* The "connection" function gets it bind info from the address we're
3589 given, so use this dummy address if nothing is specified. */ 3589 given, so use this dummy address if nothing is specified. */
3590#ifdef HAVE_LOCAL_SOCKETS
3590 if (family != AF_LOCAL) 3591 if (family != AF_LOCAL)
3592#endif
3591 host = build_string ("127.0.0.1"); 3593 host = build_string ("127.0.0.1");
3592 } 3594 }
3593 else 3595 else