X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/putty/blobdiff_plain/ec55b2200b3a40631648cfa02ed63207b58832fe..d162e8da21fa24a45df2de04c75d278c43cc0d5d:/window.c diff --git a/window.c b/window.c index 822cb01e..410ba1a9 100644 --- a/window.c +++ b/window.c @@ -650,6 +650,9 @@ static void enact_pending_netevent(void) { case WSAECONNRESET: sprintf(buf, "Connection reset by peer"); break; + case WSAECONNABORTED: + sprintf(buf, "Connection aborted"); + break; default: sprintf(buf, "Unexpected network error %d", -i); break;