]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
auth: Make auth_mech_list_verify_passdb() public
authorStephan Bosch <stephan.bosch@open-xchange.com>
Sun, 29 Oct 2023 17:03:42 +0000 (18:03 +0100)
committertimo.sirainen <timo.sirainen@open-xchange.com>
Thu, 9 Oct 2025 08:41:22 +0000 (08:41 +0000)
src/auth/auth.c
src/auth/auth.h

index 69acef337e47b8e980df45e136e9ce73a6fe78fd..2d7ccf230d0bf60e847b091f623e67d6475b7033 100644 (file)
@@ -267,7 +267,7 @@ auth_mech_verify_passdb(const struct auth *auth,
        return TRUE;
 }
 
-static void auth_mech_list_verify_passdb(const struct auth *auth)
+void auth_mech_list_verify_passdb(const struct auth *auth)
 {
        const struct mech_module_list *list;
 
index 94faf67d32a4ba6af9928588f90d9bac15923b11..1697f2e95e689ac87b0102681d3abf9cd00b45c8 100644 (file)
@@ -94,6 +94,8 @@ bool auth_passdb_list_have_verify_plain(const struct auth *auth);
 bool auth_passdb_list_have_lookup_credentials(const struct auth *auth);
 bool auth_passdb_list_have_set_credentials(const struct auth *auth);
 
+void auth_mech_list_verify_passdb(const struct auth *auth);
+
 struct auth *auth_find_protocol(const char *name);
 struct auth *auth_default_protocol(void);