Skip to content

Commit ed79350

Browse files
authored
Merge pull request #462 from tophyr/gno-gnu-glob
Remove GLOB_PERIOD from ddio_FindFileStart
2 parents 3b7a6cc + 652ef55 commit ed79350

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)