diff options
Diffstat (limited to 'net-libs/loudmouth/files/loudmouth-0.14-gnutls_null_no_error.patch')
-rw-r--r-- | net-libs/loudmouth/files/loudmouth-0.14-gnutls_null_no_error.patch | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/net-libs/loudmouth/files/loudmouth-0.14-gnutls_null_no_error.patch b/net-libs/loudmouth/files/loudmouth-0.14-gnutls_null_no_error.patch deleted file mode 100644 index 30f0eeedfb56..000000000000 --- a/net-libs/loudmouth/files/loudmouth-0.14-gnutls_null_no_error.patch +++ /dev/null @@ -1,14 +0,0 @@ ---- loudmouth-0.14/loudmouth/lm-connection.c 2003-10-02 10:36:30.000000000 +0200 -+++ loudmouth-0.14/loudmouth/lm-connection.c.new 2003-10-03 21:42:05.000000000 +0200 -@@ -437,7 +437,10 @@ - if (connection->use_ssl) { - bytes_read = gnutls_record_recv (connection->gnutls_session, - buf,IN_BUFFER_SIZE - 1); -- if (bytes_read <= 0) { -+ if (bytes_read == GNUTLS_E_AGAIN) { -+ status = G_IO_STATUS_AGAIN; -+ } -+ else if (bytes_read <= 0) { - status = G_IO_STATUS_ERROR; - - //connection_error_event (connection->io_channel, |