We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents bc7e16a + 56d1242 commit eb0b17bCopy full SHA for eb0b17b
1 file changed
cups/tls-gnutls.c
@@ -1613,7 +1613,7 @@ _httpTLSRead(http_t *http, // I - Connection to server
1613
1614
result = gnutls_record_recv(http->tls, buf, (size_t)len);
1615
1616
- if (result < 0 && !errno)
+ if (result < 0)
1617
{
1618
// Convert GNU TLS error to errno value...
1619
switch (result)
@@ -2022,7 +2022,7 @@ _httpTLSWrite(http_t *http, // I - Connection to server
2022
2023
result = gnutls_record_send(http->tls, buf, (size_t)len);
2024
2025
2026
2027
2028
0 commit comments