diff options
Diffstat (limited to 'xorg-server')
-rw-r--r-- | xorg-server/hw/xwin/windisplay.c | 5 | ||||
-rwxr-xr-x | xorg-server/os/utils.c | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/xorg-server/hw/xwin/windisplay.c b/xorg-server/hw/xwin/windisplay.c index d92369850..fd6d4cd10 100644 --- a/xorg-server/hw/xwin/windisplay.c +++ b/xorg-server/hw/xwin/windisplay.c @@ -45,10 +45,13 @@ void winGetDisplayName(char *szDisplay, unsigned int screen) { +#ifdef LOCALCONN if (_XSERVTransIsListening("local")) { snprintf(szDisplay, 512, ":%s.%d", display, screen); } - else if (_XSERVTransIsListening("inet")) { + else +#endif + if (_XSERVTransIsListening("inet")) { snprintf(szDisplay, 512, "127.0.0.1:%s.%d", display, screen); } else if (_XSERVTransIsListening("inet6")) { diff --git a/xorg-server/os/utils.c b/xorg-server/os/utils.c index 123baae85..bdb587e36 100755 --- a/xorg-server/os/utils.c +++ b/xorg-server/os/utils.c @@ -670,10 +670,10 @@ static const char *defaultNoListenList[] = { #ifndef LISTEN_TCP "tcp", #endif -#ifndef LISTEN_UNIX +#if !defined(LISTEN_UNIX) && defined(UNIXCONN) "unix", #endif -#ifndef LISTEN_LOCAL +#if !defined(LISTEN_LOCAL) && defined(LOCALCONN) "local", #endif NULL |