Openssh-2.1.1p2 BUG? X11 forwarding no longer works
Chan Shih-Ping Richard
cshihpin at dso.org.sg
Wed Jul 5 18:02:38 EST 2000
BUG: X11 forwarding no longer works in Openssh-2.1.1p2.
I think this is due to the wrong sense of the test
in session.c:1372
session_x11_req(Session *s)
{
if (!no_port_forwarding_flag) {
debug("X11 forwarding disabled in user configuration
file.");
return 0;
}
It should be
session_x11_req(Session *s)
{
if (no_port_forwarding_flag) {
debug("X11 forwarding disabled in user configuration
file.");
return 0;
}
--
Chan Shih-Ping (Richard) <cshihpin at dso.org.sg>
DSO National Laboratories
20 Science Park Drive
Singapore 118230
More information about the openssh-unix-dev
mailing list