From: Friedemann Kleint Date: Mon, 26 Nov 2012 16:18:30 +0000 (+0100) Subject: Fix typo in SSL error message. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=30eb0b7281658c6f3234a9fa6aa2f199479155df;p=profile%2Fivi%2Fqtbase.git Fix typo in SSL error message. Change-Id: If72d80979e1d2ea909227785cd691be39d75c8ab Reviewed-by: Shane Kearns --- diff --git a/src/network/ssl/qsslsocket_openssl.cpp b/src/network/ssl/qsslsocket_openssl.cpp index c25ebd5..39b49ce 100644 --- a/src/network/ssl/qsslsocket_openssl.cpp +++ b/src/network/ssl/qsslsocket_openssl.cpp @@ -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;