MIHIRA Sanpei Yoshiro
2000-Aug-28 14:38 UTC
[OpenSSH] sample line about ForwardX11 in ssh_config file is not fit to default setting
Hi OpenSSH developers I use OpenSSH under FreeBSD. It's cool and useful for me. By the way, sample line of ForwardX11 in ssh_config was not fit for default setting in readconf.c. I want to change ssh_config. ---------- In ssh source (src/usr.bin/ssh/readconf.c), currently ForwardX11 is disabled. 731 if (options->forward_x11 == -1) 732 options->forward_x11 = 0; ~ And this changes in Rev.1.23 by markus. 1.23 Mon Feb 28 19:51:58 GMT 2000 by markus Diffs to 1.22 turn off x11-fwd for the client, too. But ssh_config (src/usr.bin/ssh/ssh_config) was not changed and currently ForwardX11 yes. 17 # ForwardX11 yes ~~~ I think that markus forgot to change ssh_config file. ---------- For example, ``FallBackToRsh'' was changed by deraadt at Jul 11 2000, he changed both readconf.c and ssh_config files. readconf.c Rev.1.41 ssh_config Rev.1.5 Thank you. --- MIHIRA, Sanpei Yoshiro Yokohama, Japan.
Markus Friedl
2000-Aug-28 15:56 UTC
[OpenSSH] sample line about ForwardX11 in ssh_config file is not fit to default setting
src/usr.bin/ssh/ssh_config is not in sync at all. On Mon, Aug 28, 2000 at 11:38:58PM +0900, MIHIRA Sanpei Yoshiro wrote:> Hi > OpenSSH developers > > I use OpenSSH under FreeBSD. It's cool and useful for me. > > By the way, sample line of ForwardX11 in ssh_config was not fit > for default setting in readconf.c. I want to change ssh_config. > ---------- > In ssh source (src/usr.bin/ssh/readconf.c), currently ForwardX11 > is disabled. > > 731 if (options->forward_x11 == -1) > 732 options->forward_x11 = 0; > ~ > > And this changes in Rev.1.23 by markus. > > 1.23 Mon Feb 28 19:51:58 GMT 2000 by markus > Diffs to 1.22 > > turn off x11-fwd for the client, too. > > But ssh_config (src/usr.bin/ssh/ssh_config) was not changed and > currently ForwardX11 yes. > > 17 # ForwardX11 yes > ~~~ > > I think that markus forgot to change ssh_config file. > ---------- > For example, ``FallBackToRsh'' was changed by deraadt at Jul 11 > 2000, he changed both readconf.c and ssh_config files. > > readconf.c Rev.1.41 > ssh_config Rev.1.5 > > > Thank you. > --- > MIHIRA, Sanpei Yoshiro > Yokohama, Japan.