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:
3
telnet.c
3
telnet.c
@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user