Make authenticator changes to protocol backwards-compatible
[quassel.git] / src / core / sqlauthenticator.cpp
index fe8fffc..52f0ac6 100644 (file)
@@ -63,14 +63,14 @@ UserId SqlAuthenticator::validateUser(const QString &user, const QString &passwo
 
 bool SqlAuthenticator::setup(const QVariantMap &settings)
 {
-       return true;
+    return true;
 }
 
 Authenticator::State SqlAuthenticator::init(const QVariantMap &settings)
 {
-       // TODO: FIXME: this should check if the storage provider is ready, but I don't
-       // know if there's an exposed way to do that at the moment.
-       
-       quInfo() << qPrintable(displayName()) << "Authenticator is ready.";
-       return IsReady;
-}
\ No newline at end of file
+    // TODO: FIXME: this should check if the storage provider is ready, but I don't
+    // know if there's an exposed way to do that at the moment.
+
+    quInfo() << qPrintable(displayName()) << "Authenticator is ready.";
+    return IsReady;
+}