From: Timo Sirainen Date: Sat, 20 May 2023 18:09:57 +0000 (+0300) Subject: config: Rename _set_roots symbol to _set_infos X-Git-Tag: 2.4.0~1992 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2dd9beb9ecf7ce345a2dd72c088dba8b151b1acf;p=thirdparty%2Fdovecot%2Fcore.git config: Rename _set_roots symbol to _set_infos All external plugins' settings must be updated to use the new symbol. --- diff --git a/src/config/config-parser.c b/src/config/config-parser.c index 468488bdd4..878b5b80df 100644 --- a/src/config/config-parser.c +++ b/src/config/config-parser.c @@ -1573,7 +1573,7 @@ void config_parse_load_modules(void) i_array_init(&new_services, 64); for (m = modules; m != NULL; m = m->next) { infos = module_get_symbol_quiet(m, - t_strdup_printf("%s_set_roots", m->name)); + t_strdup_printf("%s_set_infos", m->name)); if (infos != NULL) { for (i = 0; infos[i] != NULL; i++) array_push_back(&new_infos, &infos[i]);