Fix typo in SSL error message.
authorFriedemann Kleint <Friedemann.Kleint@digia.com>
Mon, 26 Nov 2012 16:18:30 +0000 (17:18 +0100)
committerThe Qt Project <gerrit-noreply@qt-project.org>
Tue, 27 Nov 2012 18:31:21 +0000 (19:31 +0100)
Change-Id: If72d80979e1d2ea909227785cd691be39d75c8ab
Reviewed-by: Shane Kearns <shane.kearns@accenture.com>
src/network/ssl/qsslsocket_openssl.cpp

index c25ebd5..39b49ce 100644 (file)
@@ -865,7 +865,7 @@ void QSslSocketBackendPrivate::startClientEncryption()
 {
     Q_Q(QSslSocket);
     if (!initSslContext()) {
-        q->setErrorString(QSslSocket::tr("Unable to init Ssl Context: %1").arg(getErrorsFromOpenSsl()));
+        q->setErrorString(QSslSocket::tr("Unable to init SSL Context: %1").arg(getErrorsFromOpenSsl()));
         q->setSocketError(QAbstractSocket::SslInternalError);
         emit q->error(QAbstractSocket::SslInternalError);
         return;
@@ -881,7 +881,7 @@ void QSslSocketBackendPrivate::startServerEncryption()
 {
     Q_Q(QSslSocket);
     if (!initSslContext()) {
-        q->setErrorString(QSslSocket::tr("Unable to init Ssl Context: %1").arg(getErrorsFromOpenSsl()));
+        q->setErrorString(QSslSocket::tr("Unable to init SSL Context: %1").arg(getErrorsFromOpenSsl()));
         q->setSocketError(QAbstractSocket::SslInternalError);
         emit q->error(QAbstractSocket::SslInternalError);
         return;