This seems related to bug 60859, which is marked resolved, but the
problem is still present in 1.35. This happens with both my distro-
supplied perl 5.10.1 and a built-for-testing 5.16.3, on CentOS 6.3.
When requesting a pty, it's submitting the terminal width and height in
the wrong order, in both the SSH2.pm and SSH1.pm files. It needs to
send width, height, xpix, ypix; but, each time, it's sending height,
width, xpix, ypix.
This ticket was imported from rt.cpan.org 83978
This seems related to bug 60859, which is marked resolved, but the problem is still present in 1.35. This happens with both my distro- supplied perl 5.10.1 and a built-for-testing 5.16.3, on CentOS 6.3.
When requesting a pty, it's submitting the terminal width and height in the wrong order, in both the SSH2.pm and SSH1.pm files. It needs to send width, height, xpix, ypix; but, each time, it's sending height, width, xpix, ypix.
I've attached patches for both SSH2.pm and SSH1.pm.
Example of buggy behavior:
After fixing SSH2.pm like this,
it then works as expected:
cheers, --sabrina