1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-07-14 09:37:34 -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

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