aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xconfig.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/config.c b/config.c
index 20f99f723..baba870bb 100755
--- a/config.c
+++ b/config.c
@@ -514,7 +514,7 @@ static struct ast_config *__ast_load(const char *configfile, struct ast_config *
glob_t globbuf;
globbuf.gl_offs = 0; /* initialize it to silence gcc */
#ifdef SOLARIS
- glob_ret = glob(fn, GLOB_NOMAGIC, NULL, &globbuf);
+ glob_ret = glob(fn, GLOB_NOCHECK, NULL, &globbuf);
#else
glob_ret = glob(fn, GLOB_NOMAGIC|GLOB_BRACE, NULL, &globbuf);
#endif