X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcore%2Fldapauthenticator.cpp;h=e7dc3c0c601662e16f30580c1a9b74538c5d8353;hb=8c6448c2e0048389fbac9e2e9daf22b5b050d5b6;hp=31221fd76873fb0ac020803bee1ae3ac0fcc148a;hpb=696edd3dc076cf52edd8bece9055c2b3ec9086d0;p=quassel.git diff --git a/src/core/ldapauthenticator.cpp b/src/core/ldapauthenticator.cpp index 31221fd7..e7dc3c0c 100644 --- a/src/core/ldapauthenticator.cpp +++ b/src/core/ldapauthenticator.cpp @@ -28,7 +28,6 @@ #include "ldapauthenticator.h" -#include "logmessage.h" #include "network.h" #include "quassel.h" @@ -152,11 +151,11 @@ Authenticator::State LdapAuthenticator::init(const QVariantMap& settings, const bool status = ldapConnect(); if (!status) { - quInfo() << qPrintable(backendId()) << "authenticator cannot connect."; + qInfo() << qPrintable(backendId()) << "authenticator cannot connect."; return NotAvailable; } - quInfo() << qPrintable(backendId()) << "authenticator is ready."; + qInfo() << qPrintable(backendId()) << "authenticator is ready."; return IsReady; } @@ -177,7 +176,7 @@ bool LdapAuthenticator::ldapConnect() serverURIArray = serverURI.toLocal8Bit(); res = ldap_initialize(&_connection, serverURIArray); - quInfo() << "LDAP: Connecting to" << serverURI; + qInfo() << "LDAP: Connecting to" << serverURI; if (res != LDAP_SUCCESS) { qWarning() << "Could not connect to LDAP server:" << ldap_err2string(res);