Chan Shih-Ping Richard
2000-Jul-05 08:02 UTC
Openssh-2.1.1p2 BUG? X11 forwarding no longer works
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
Chan Shih-Ping Richard wrote:> 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:1372Yes, I've noticed this as well. There seems to be a similar issue with the -L style forwarding. Perhaps this is caused by the test on serverloop.c:725. I'm not sure without trying it, though. I don't mind doing this if it is any help to anyone. -- Pete