Archived
14
0
Fork 0

GLOB_BRACE is already added to MY_GLOB_FLAGS if it is supported on the

platform.  This should resolve some build errors on Solaris.

(issue #13704)
Reported by: dougm


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@154191 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
seanbright 2008-11-04 17:23:33 +00:00
parent 220ba2be3d
commit fbdcc9fb02

View file

@ -6468,7 +6468,7 @@ int ast_load_documentation(void)
ast_asprintf(&xmlpattern, "%s/documentation{/thirdparty/,/}*-{%s,%.2s_??,%s}.xml", ast_config_AST_DATA_DIR,
documentation_language, documentation_language, default_documentation_language);
globbuf.gl_offs = 0; /* initialize it to silence gcc */
globret = glob(xmlpattern, MY_GLOB_FLAGS | GLOB_BRACE, NULL, &globbuf);
globret = glob(xmlpattern, MY_GLOB_FLAGS, NULL, &globbuf);
if (globret == GLOB_NOSPACE) {
ast_log(LOG_WARNING, "Glob Expansion of pattern '%s' failed: Not enough memory\n", xmlpattern);
ast_free(xmlpattern);