linuxdcpp-team team mailing list archive
-
linuxdcpp-team team
-
Mailing list archive
-
Message #06441
[Branch ~dcplusplus-team/dcplusplus/trunk] Rev 3176: fix TLS errors
------------------------------------------------------------
revno: 3176
committer: poy <poy@xxxxxxxxxx>
branch nick: trunk
timestamp: Mon 2013-01-21 19:43:04 +0100
message:
fix TLS errors
modified:
dcpp/SSLSocket.cpp
--
lp:dcplusplus
https://code.launchpad.net/~dcplusplus-team/dcplusplus/trunk
Your team Dcplusplus-team is subscribed to branch lp:dcplusplus.
To unsubscribe from this branch go to https://code.launchpad.net/~dcplusplus-team/dcplusplus/trunk/+edit-subscription
=== modified file 'dcpp/SSLSocket.cpp'
--- dcpp/SSLSocket.cpp 2013-01-21 16:09:46 +0000
+++ dcpp/SSLSocket.cpp 2013-01-21 18:43:04 +0000
@@ -169,7 +169,7 @@
/* don't bother getting error messages from the codes because 1) there is some
additional management necessary (eg SSL_load_error_strings) and 2) openssl error codes
aren't shown to the end user; they only hit standard output in debug builds. */
- dcdebug("TLS error: call ret = %1%, SSL_get_error = %2%, ERR_get_error = %3%", ret, err, ERR_get_error());
+ dcdebug("TLS error: call ret = %d, SSL_get_error = %d, ERR_get_error = %d\n", ret, err, ERR_get_error());
throw SSLSocketException(_("TLS error"));
}
}