Ignore hidden files when using wildcards.

This commit is contained in:
Steven Mattera
2018-11-08 19:09:14 -05:00
parent ec1bb508b3
commit 14cdcc1497
5 changed files with 7 additions and 7 deletions

View File

@@ -45,7 +45,7 @@ int ini_parse(link_t *dst, char *ini_path, bool is_dir)
if (is_dir)
{
filelist = dirlist(filename, "*.ini");
filelist = dirlist(filename, "*.ini", false);
if (!filelist)
{
free(filename);