]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
auth: auth-sasl - Rename auth_sasl_verify_passdb() to auth_sasl_mech_verify_passdb()
authorStephan Bosch <stephan.bosch@open-xchange.com>
Sun, 29 Oct 2023 23:31:34 +0000 (00:31 +0100)
committertimo.sirainen <timo.sirainen@open-xchange.com>
Thu, 9 Oct 2025 08:41:22 +0000 (08:41 +0000)
src/auth/auth-sasl.c

index 2f9c4cedfd9412e6a065e41a4ac20efc5c767c51..241d121d0b6f213d98fafba6d02f80ed20493129 100644 (file)
@@ -395,8 +395,8 @@ void auth_sasl_instance_init(struct auth *auth,
 }
 
 static bool
-auth_mech_verify_passdb(const struct auth *auth,
-                       const struct sasl_server_mech_def *mech)
+auth_sasl_mech_verify_passdb(const struct auth *auth,
+                            const struct sasl_server_mech_def *mech)
 {
        switch (mech->passdb_need) {
        case SASL_MECH_PASSDB_NEED_NOTHING:
@@ -425,7 +425,7 @@ void auth_sasl_instance_verify(const struct auth *auth)
        const struct mech_module_list *list;
 
        for (list = auth->reg->modules; list != NULL; list = list->next) {
-               if (!auth_mech_verify_passdb(auth, list->module))
+               if (!auth_sasl_mech_verify_passdb(auth, list->module))
                        break;
        }