Skip to content

Commit 652ef55

Browse files
committed
Remove GLOB_PERIOD from ddio_FindFileStart
GLOB_PERIOD is a GNU extension and is not supported on non-glibc
1 parent fa3f379 commit 652ef55

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ddio/lnxfile.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -393,7 +393,7 @@ bool ddio_FindFileStart(const char *wildcard, char *namebuf) {
393393
return false;
394394
#else
395395
int rc, flags;
396-
flags = GLOB_MARK | GLOB_PERIOD | GLOB_TILDE;
396+
flags = GLOB_MARK | GLOB_TILDE;
397397
rc = glob(wildcard, flags, globerrfn, &ffres);
398398
if (rc == GLOB_NOSPACE) {
399399
mprintf(0, "Out of space during glob\n");

0 commit comments

Comments
 (0)