Skip to content
Snippets Groups Projects
Commit 272cb803 authored by Jigsaw52's avatar Jigsaw52
Browse files

Avoid unused function warnings on libc's without GLOB_ALTDIRFUNC #40354

parent c359c305
No related branches found
No related tags found
No related merge requests found
o Minor bugfixes (compilation):
- Fix a compilation warning about unused functions when building with
a libc that lacks the GLOB_ALTDIRFUNC constant. Fixes bug 40354;
bugfix on 0.4.5.1-alpha. Patch by Daniel Pinto.
......@@ -533,6 +533,7 @@ unglob_win32(const char *pattern, int prev_sep, int next_sep)
return result;
}
#elif HAVE_GLOB
#ifdef GLOB_ALTDIRFUNC // prevent warning about unused functions
/** Same as opendir but calls sandbox_intern_string before */
static DIR *
prot_opendir(const char *name)
......@@ -571,6 +572,7 @@ wrap_closedir(void *arg)
{
closedir(arg);
}
#endif /* defined(GLOB_ALTDIRFUNC) */
#endif /* defined(HAVE_GLOB) */
/** Return a new list containing the paths that match the pattern
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment