]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
auth: auth-sasl - Some minor formatting changes
authorStephan Bosch <stephan.bosch@open-xchange.com>
Sat, 28 Oct 2023 06:25:57 +0000 (08:25 +0200)
committertimo.sirainen <timo.sirainen@open-xchange.com>
Thu, 9 Oct 2025 08:41:22 +0000 (08:41 +0000)
src/auth/auth-sasl.c

index 192efeaba8ac237bb24d6b0cbac0be0fcdb59705..923bad4c9d82eeff47abd62c57cff5feae48d71a 100644 (file)
@@ -20,7 +20,9 @@ static struct mech_module_list *mech_modules;
 void mech_register_module(const struct mech_module *module)
 {
        struct mech_module_list *list;
-       i_assert(strcmp(module->mech_name, t_str_ucase(module->mech_name)) == 0);
+
+       i_assert(strcmp(module->mech_name,
+                       t_str_ucase(module->mech_name)) == 0);
 
        list = i_new(struct mech_module_list, 1);
        list->module = *module;