summaryrefslogtreecommitdiff
path: root/package/tntnet/patches/patch-framework_common_gnutls_cpp
diff options
context:
space:
mode:
authorWaldemar Brodkorb <mail@waldemar-brodkorb.de>2012-08-22 13:08:42 +0200
committerWaldemar Brodkorb <mail@waldemar-brodkorb.de>2012-08-22 13:08:42 +0200
commitb5ef0800a597e0c87e169139838db5339e8fc6e4 (patch)
treeb746dab4aceaec30107d393da004df2add846b99 /package/tntnet/patches/patch-framework_common_gnutls_cpp
parent7954547fd1b1661c82cbacea2b5bfdd491ac46ab (diff)
update to latest upstream version
Diffstat (limited to 'package/tntnet/patches/patch-framework_common_gnutls_cpp')
-rw-r--r--package/tntnet/patches/patch-framework_common_gnutls_cpp20
1 files changed, 0 insertions, 20 deletions
diff --git a/package/tntnet/patches/patch-framework_common_gnutls_cpp b/package/tntnet/patches/patch-framework_common_gnutls_cpp
deleted file mode 100644
index 02e89c2d0..000000000
--- a/package/tntnet/patches/patch-framework_common_gnutls_cpp
+++ /dev/null
@@ -1,20 +0,0 @@
---- tntnet-2.0.orig/framework/common/gnutls.cpp 2010-03-14 12:26:36.000000000 +0100
-+++ tntnet-2.0/framework/common/gnutls.cpp 2011-10-13 17:40:02.000000000 +0200
-@@ -364,7 +364,7 @@ namespace tnt
- break;
-
- if (ret == GNUTLS_E_AGAIN)
-- throw cxxtools::net::Timeout();
-+ throw cxxtools::IOTimeout();
-
- if (ret < 0 && ret != GNUTLS_E_INTERRUPTED)
- throw GnuTlsException("gnutls_record_recv", ret);
-@@ -403,7 +403,7 @@ namespace tnt
- break;
-
- if (ret == GNUTLS_E_AGAIN)
-- throw cxxtools::net::Timeout();
-+ throw cxxtools::IOTimeout();
-
- if (ret != GNUTLS_E_INTERRUPTED)
- throw GnuTlsException("gnutls_record_send", ret);