1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-06-30 19:12:48 -05:00

Ensure all backends _remember_ the connection has closed after

receiving a network error. Should prevent the cascading-error-box
bug.

[originally from svn r900]
This commit is contained in:
Simon Tatham
2001-01-26 12:22:16 +00:00
parent 0d0c8a5e2e
commit 62a76699ad
4 changed files with 8 additions and 3 deletions

View File

@ -465,9 +465,10 @@ static void do_telnet_read (char *buf, int len) {
}
}
static int telnet_receive(Socket s, int urgent, char *data, int len) {
static int telnet_receive(Socket skt, int urgent, char *data, int len) {
if (urgent==3) {
/* A socket error has occurred. */
s = NULL;
connection_fatal(data);
len = 0;
}