aboutsummaryrefslogtreecommitdiffstats
path: root/config.c
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-12-15 16:01:13 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-12-15 16:01:13 +0000
commit6bacd1787a9490dcac1a6a9d3b1c3791d8ae9548 (patch)
tree97ca6851e9b6c5e0faee3cd94e859a31e1b38e58 /config.c
parenta86893c2f9ad16633d442187145768462919ceb6 (diff)
Add missing patch
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@4454 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'config.c')
-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