X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcore%2Fsslserver.cpp;h=b8c010fa448087fff3908a07d4c90f0dc97aca8a;hb=fcacaaf16551524c7ebb6114254d005274cc3d63;hp=1d5a103d0d15a471c6759d6bc2c2951e163b454f;hpb=158443f71d48215eea8b47b836b61afd77654b78;p=quassel.git diff --git a/src/core/sslserver.cpp b/src/core/sslserver.cpp index 1d5a103d..b8c010fa 100644 --- a/src/core/sslserver.cpp +++ b/src/core/sslserver.cpp @@ -73,7 +73,7 @@ QTcpSocket *SslServer::nextPendingConnection() void SslServer::incomingConnection(qintptr socketDescriptor) { - QSslSocket *serverSocket = new QSslSocket(this); + auto *serverSocket = new QSslSocket(this); if (serverSocket->setSocketDescriptor(socketDescriptor)) { if (isCertValid()) { serverSocket->setLocalCertificate(_cert);