summaryrefslogtreecommitdiffstats
path: root/src/net/pvsDiscoveredServer.cpp
diff options
context:
space:
mode:
authorJohann Latocha2011-06-02 00:29:37 +0200
committerJohann Latocha2011-06-02 00:29:37 +0200
commite001d2a05ac722611fcd19e7678f96cc22156cb9 (patch)
tree82bfd9dc3f312fb4b0335ef2011365d4c39be0c3 /src/net/pvsDiscoveredServer.cpp
parentEnhancement #821 (diff)
downloadpvs-e001d2a05ac722611fcd19e7678f96cc22156cb9.tar.gz
pvs-e001d2a05ac722611fcd19e7678f96cc22156cb9.tar.xz
pvs-e001d2a05ac722611fcd19e7678f96cc22156cb9.zip
Defect #819
Diffstat (limited to 'src/net/pvsDiscoveredServer.cpp')
-rw-r--r--src/net/pvsDiscoveredServer.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/net/pvsDiscoveredServer.cpp b/src/net/pvsDiscoveredServer.cpp
index efa1506..dae27b0 100644
--- a/src/net/pvsDiscoveredServer.cpp
+++ b/src/net/pvsDiscoveredServer.cpp
@@ -46,9 +46,8 @@ void PVSDiscoveredServer::ssl_Error( const QList<QSslError> & errors )
if (err.error() == QSslError::SelfSignedCertificate) {
continue; // Also, this will always be the case; we check the fingerprint later
}
- //ConsoleLog writeNetwork(err.errorString().toUtf8().data());
- //ConsoleLog writeNetwork("***** SSL ERROR, ABORTING *****");
- qDebug("Unhandled SSL Error in SD: %s", qPrintable(err.errorString()));
+ // http://doc.trolltech.com/4.7//qsslerror.html#SslError-enum
+ qDebug("Unhandled SSL Error %i: %s", err.error(), qPrintable(err.errorString()));
return;
}
_socket->ignoreSslErrors();