aboutsummaryrefslogtreecommitdiffstats
path: root/src/net/tls
diff options
context:
space:
mode:
authorVincent Richard <[email protected]>2013-03-24 12:30:26 +0100
committerVincent Richard <[email protected]>2013-03-24 12:30:26 +0100
commit21945be4c4ef822b7dc5f6ded80027bd5437ce9d (patch)
tree4302bdee8d07b52be8aa13a4618104e9503e4b10 /src/net/tls
parentOpenSSL library already mentioned in Required.private, don't need to be speci... (diff)
downloadvmime-21945be4c4ef822b7dc5f6ded80027bd5437ce9d.tar.gz
vmime-21945be4c4ef822b7dc5f6ded80027bd5437ce9d.zip
Fixed warnings and 64-bit issues.
Diffstat (limited to 'src/net/tls')
-rw-r--r--src/net/tls/gnutls/TLSSocket_GnuTLS.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/tls/gnutls/TLSSocket_GnuTLS.cpp b/src/net/tls/gnutls/TLSSocket_GnuTLS.cpp
index 4c789381..0a24b720 100644
--- a/src/net/tls/gnutls/TLSSocket_GnuTLS.cpp
+++ b/src/net/tls/gnutls/TLSSocket_GnuTLS.cpp
@@ -206,7 +206,7 @@ TLSSocket::size_type TLSSocket_GnuTLS::sendRawNonBlocking(const char* buffer, co
return 0;
}
- TLSSession_GnuTLS::throwTLSException("gnutls_record_send", ret);
+ TLSSession_GnuTLS::throwTLSException("gnutls_record_send", static_cast <int>(ret));
}
return static_cast <size_type>(ret);