Compilers auto-define "sun" on Solaris/SunOS, which causes the variable name to turn into a constant "1", breaking the parsing of the code.
Signed-off-by: Alan Coopersmith <[email protected]> --- fd.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/fd.c b/fd.c index 8ac3e89..a9f6d4f 100644 --- a/fd.c +++ b/fd.c @@ -309,7 +309,7 @@ MakeConnection(const char *server, short port, int report, #else /* !USE_XTRANS */ char HostName[512]; struct sockaddr_in sin; - struct sockaddr_un sun; + struct sockaddr_un saun; struct sockaddr *saddr; int salen; struct hostent *hp; @@ -323,11 +323,11 @@ MakeConnection(const char *server, short port, int report, /* establish a socket to the name server for this host */ /* determine the host machine for this process */ if (*server == '\0') { - sun.sun_family = AF_UNIX; - snprintf(sun.sun_path, sizeof(sun.sun_path), + saun.sun_family = AF_UNIX; + snprintf(saun.sun_path, sizeof(saun.sun_path), "/tmp/.X11-unix/X%d", port - 6000); - salen = sizeof(sun.sun_family) + strlen(sun.sun_path) + 1; - saddr = (struct sockaddr *) &sun; + salen = sizeof(saun.sun_family) + strlen(saun.sun_path) + 1; + saddr = (struct sockaddr *) &saun; } else { debug(4, (stderr, "try to connect on %s\n", server)); -- 1.7.9.2 _______________________________________________ [email protected]: X.Org development Archives: http://lists.x.org/archives/xorg-devel Info: http://lists.x.org/mailman/listinfo/xorg-devel
