]> asedeno.scripts.mit.edu Git - PuTTY.git/commitdiff
After we receive EOF on stdin, we should clear ssh->send_ok so that
authorSimon Tatham <anakin@pobox.com>
Tue, 29 Mar 2005 13:10:33 +0000 (13:10 +0000)
committerSimon Tatham <anakin@pobox.com>
Tue, 29 Mar 2005 13:10:33 +0000 (13:10 +0000)
we stop trying to read anything further from stdin. Otherwise we
send a continuous stream of SSH2_MSG_CHANNEL_EOF.

[originally from svn r5561]

ssh.c

diff --git a/ssh.c b/ssh.c
index 72c7c2f90b56a3012755747a192ac89a5d7c7cd6..8ecd060b365026339d5035a56873c4b747d99af1 100644 (file)
--- a/ssh.c
+++ b/ssh.c
@@ -8055,6 +8055,7 @@ static void ssh_special(void *handle, Telnet_Special code)
            struct Packet *pktout = ssh2_pkt_init(SSH2_MSG_CHANNEL_EOF);
            ssh2_pkt_adduint32(pktout, ssh->mainchan->remoteid);
            ssh2_pkt_send(ssh, pktout);
+            ssh->send_ok = 0;          /* now stop trying to read from stdin */
        }
        logevent("Sent EOF message");
     } else if (code == TS_PING || code == TS_NOP) {