X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=blobdiff_plain;f=x11fwd.c;h=d748da1377584026c4bd1b1b9b420812dc953d92;hb=6c81ee6706f75ccab7bc285d00139126524cce36;hp=b0b826981d7975d0c220b067803e2e73c2e00514;hpb=20f433efac8908e7024b3ae78fd8f6d3313f4d09;p=PuTTY.git diff --git a/x11fwd.c b/x11fwd.c index b0b82698..d748da13 100644 --- a/x11fwd.c +++ b/x11fwd.c @@ -1,3 +1,7 @@ +/* + * Platform-independent bits of X11 forwarding. + */ + #include #include #include @@ -228,14 +232,21 @@ int x11_get_screen_number(char *display) /* Find the right display, returns an allocated string */ char *x11_display(const char *display) { - if(!display || !*display) - if(!(display = getenv("DISPLAY"))) - display = ":0"; - if(display[0] == ':') { + char *ret; + if(!display || !*display) { + /* try to find platform-specific local display */ + if(!(ret = platform_get_x_display())) + /* plausible default for all platforms */ + ret = dupstr(":0"); + } else + ret = dupstr(display); + if(ret[0] == ':') { /* no transport specified, use whatever we think is best */ - return dupcat(platform_x11_best_transport, display, (char *)0); + char *s = dupcat(platform_x11_best_transport, ret, (char *)0); + sfree(ret); + return s; } else - return dupstr(display); + return ret; } /*