summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorD.M.D. Ljungmark <spider@gentoo.org>2003-12-07 15:45:36 +0000
committerD.M.D. Ljungmark <spider@gentoo.org>2003-12-07 15:45:36 +0000
commit3a93ff7d34a71bcfde05dd176e695518071a0880 (patch)
treed0413c9e63239bf6f3e160641b71befb26c57f75 /net-libs/loudmouth/files
parentMoving to stable x86 (diff)
downloadgentoo-2-3a93ff7d34a71bcfde05dd176e695518071a0880.tar.gz
gentoo-2-3a93ff7d34a71bcfde05dd176e695518071a0880.tar.bz2
gentoo-2-3a93ff7d34a71bcfde05dd176e695518071a0880.zip
Removing old versions
Diffstat (limited to 'net-libs/loudmouth/files')
-rw-r--r--net-libs/loudmouth/files/digest-loudmouth-0.13.21
-rw-r--r--net-libs/loudmouth/files/digest-loudmouth-0.13.2-r11
-rw-r--r--net-libs/loudmouth/files/digest-loudmouth-0.141
-rw-r--r--net-libs/loudmouth/files/loudmouth-0.14-gnutls_null_no_error.patch14
4 files changed, 0 insertions, 17 deletions
diff --git a/net-libs/loudmouth/files/digest-loudmouth-0.13.2 b/net-libs/loudmouth/files/digest-loudmouth-0.13.2
deleted file mode 100644
index b6de30e45de0..000000000000
--- a/net-libs/loudmouth/files/digest-loudmouth-0.13.2
+++ /dev/null
@@ -1 +0,0 @@
-MD5 219b8fe4c8fdb9caa0ba6e1e13bfbfed loudmouth-0.13.2.tar.bz2 259640
diff --git a/net-libs/loudmouth/files/digest-loudmouth-0.13.2-r1 b/net-libs/loudmouth/files/digest-loudmouth-0.13.2-r1
deleted file mode 100644
index b6de30e45de0..000000000000
--- a/net-libs/loudmouth/files/digest-loudmouth-0.13.2-r1
+++ /dev/null
@@ -1 +0,0 @@
-MD5 219b8fe4c8fdb9caa0ba6e1e13bfbfed loudmouth-0.13.2.tar.bz2 259640
diff --git a/net-libs/loudmouth/files/digest-loudmouth-0.14 b/net-libs/loudmouth/files/digest-loudmouth-0.14
deleted file mode 100644
index 955f63bee42d..000000000000
--- a/net-libs/loudmouth/files/digest-loudmouth-0.14
+++ /dev/null
@@ -1 +0,0 @@
-MD5 fc894018e67593bf19b68b5c6466eaba loudmouth-0.14.tar.bz2 192372
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,