Searched defs:globbers (Results 1 - 2 of 2) sorted by relevance

/dovecot/src/lib-settings/
H A Dsettings.c133 glob_t globbers; local
136 switch (glob(pattern, GLOB_BRACE, NULL, &globbers)) {
156 for (i = 0; i < globbers.gl_pathc; i++) {
157 if (settings_add_include(globbers.gl_pathv[i], inputp,
161 globfree(&globbers);
/dovecot/src/config/
H A Dconfig-parser.c530 glob_t globbers; local
533 switch (glob(pattern, GLOB_BRACE, NULL, &globbers)) {
553 for (i = globbers.gl_pathc; i > 0; i--) {
554 if (settings_add_include(ctx, globbers.gl_pathv[i-1],
560 globfree(&globbers);

Completed in 13 milliseconds