X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fclient%2Fclientauthhandler.cpp;h=4a99890de6f8090f596ab65e8fa792b35f0a6d3a;hp=fc6156d2a743858825beedcf25b499d6b9ad9fa7;hb=258d157a228d2b2b46b01d3b33ab932b9979436a;hpb=61aac1868f15babb7086d8bc6bbcff530346f438 diff --git a/src/client/clientauthhandler.cpp b/src/client/clientauthhandler.cpp index fc6156d2..4a99890d 100644 --- a/src/client/clientauthhandler.cpp +++ b/src/client/clientauthhandler.cpp @@ -303,7 +303,7 @@ void ClientAuthHandler::handle(const ClientRegistered &msg) { _coreConfigured = msg.coreConfigured; _backendInfo = msg.backendInfo; - _authBackendInfo = msg.authBackendInfo; + _authenticatorInfo = msg.authenticatorInfo; Client::setCoreFeatures(static_cast(msg.coreFeatures)); @@ -322,7 +322,7 @@ void ClientAuthHandler::onConnectionReady() if (!_coreConfigured) { // start wizard - emit startCoreSetup(_backendInfo, _authBackendInfo); + emit startCoreSetup(_backendInfo, _authenticatorInfo); } else // TODO: check if we need LoginEnabled login(); @@ -488,7 +488,7 @@ void ClientAuthHandler::onSslErrors() default: qWarning() << "Certificate digest version" << QString(knownDigestVersion) << "is not supported"; } - + if (knownDigest != calculatedDigest) { bool accepted = false; bool permanently = false;