Windows build fix

* process.c (Fmake_network_process): Build fix for systems
without local sockets.
This commit is contained in:
Lars Ingebrigtsen 2016-02-01 01:19:42 +01:00
parent b11531e99f
commit 56cd5301f1

View file

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