diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2011-10-13 17:49:06 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2011-10-13 17:49:06 +0200 |
commit | 19822069553a223f5911f1cac3ba3a695469a488 (patch) | |
tree | 800a402d35b445fdbc016954f55cfb9e2677e086 /package/tntnet/patches | |
parent | 9116bc25b8b50663447daeb3cb07e0045a438786 (diff) |
update to latest upstream version
Diffstat (limited to 'package/tntnet/patches')
-rw-r--r-- | package/tntnet/patches/patch-framework_common_gnutls_cpp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/package/tntnet/patches/patch-framework_common_gnutls_cpp b/package/tntnet/patches/patch-framework_common_gnutls_cpp new file mode 100644 index 000000000..02e89c2d0 --- /dev/null +++ b/package/tntnet/patches/patch-framework_common_gnutls_cpp @@ -0,0 +1,20 @@ +--- 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); |