From fa731eaf82ad30bb50678fa4f8f7f92eaef73d73 Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Wed, 11 Oct 2000 19:56:22 +0000 Subject: [PATCH] Add UNE 10053 to the cleartext ones [originally from svn r703] --- window.c | 3 +++ 1 file changed, 3 insertions(+) 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;