Differences From Artifact [c3573a8324]:
- File x11fwd.c — part of check-in [3d586c00d5] at 2004-10-06 17:31:07 on branch trunk — X forwarding changes: - new function platform_get_x_display() to find a sensible local display. On Unix, the Gtk apps weren't taking account of --display when determining where to send forwarded X traffic. - explicitly document that leaving X display location blank in config tries to do something sensible (and that it's now blank by default) - don't override X11Display setting in plink, since that's more properly done later (user: jacob size: 14662)
To Artifact [b62a7c3498]:
- File x11fwd.c — part of check-in [02e36a55f2] at 2004-11-18 11:13:45 on branch trunk — *sigh* X11 forwarding to a local display (":0" or similar) specified in the environment rather than the configuraton was failing as of 0.56 (introduced in r4604). This probably only bit users of Unix PuTTY. Didn't spot in testing as I was forwarding to already-forwarded displays. I really wasn't having a good month that month, was I? (user: jacob size: 14658)
| ︙ | |||
238 239 240 241 242 243 244 | 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 | - + |
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 */
|
| ︙ |