opps, its 60xx, not 61xx for Xserver tcp ports

This commit is contained in:
jsorg71 2006-02-12 00:34:19 +00:00
parent cdba972be2
commit 37c764bdbb

View File

@ -99,10 +99,10 @@ x_server_running(int display)
x_running = g_tcp_bind(sck, text); x_running = g_tcp_bind(sck, text);
g_tcp_close(sck); g_tcp_close(sck);
} }
if (!x_running) /* check 61xx */ if (!x_running) /* check 60xx */
{ {
sck = g_tcp_socket(); sck = g_tcp_socket();
g_sprintf(text, "61%2.2d", display); g_sprintf(text, "60%2.2d", display);
x_running = g_tcp_bind(sck, text); x_running = g_tcp_bind(sck, text);
g_tcp_close(sck); g_tcp_close(sck);
} }