We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e68fcb commit ad4d0beCopy full SHA for ad4d0be
1 file changed
cups/http.c
@@ -4702,7 +4702,7 @@ http_write(http_t *http, // I - HTTP connection
4702
4703
http->error = WSAGetLastError();
4704
}
4705
- else if (WSAGetLastError() != http->error && WSAGetLastError() != WSAECONNRESET)
+ else if (WSAGetLastError() != http->error)
4706
{
4707
4708
continue;
@@ -4722,7 +4722,7 @@ http_write(http_t *http, // I - HTTP connection
4722
4723
http->error = errno;
4724
4725
- else if (errno != http->error && errno != ECONNRESET)
+ else if (errno != http->error)
4726
4727
4728
0 commit comments