From: Stephan Bosch Date: Sun, 29 Oct 2023 23:31:34 +0000 (+0100) Subject: auth: auth-sasl - Rename auth_sasl_verify_passdb() to auth_sasl_mech_verify_passdb() X-Git-Tag: 2.4.2~213 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=65c5758064f2ac5c7df5653fe7ec2cb6aa1fefeb;p=thirdparty%2Fdovecot%2Fcore.git auth: auth-sasl - Rename auth_sasl_verify_passdb() to auth_sasl_mech_verify_passdb() --- diff --git a/src/auth/auth-sasl.c b/src/auth/auth-sasl.c index 2f9c4cedfd..241d121d0b 100644 --- a/src/auth/auth-sasl.c +++ b/src/auth/auth-sasl.c @@ -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; }