Fix typo in SSL error message.
Change-Id: If72d80979e1d2ea909227785cd691be39d75c8ab Reviewed-by: Shane Kearns <shane.kearns@accenture.com>
This commit is contained in:
parent
f397901970
commit
30eb0b7281
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user