diff options
author | rubidium <rubidium@openttd.org> | 2009-03-04 00:19:42 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2009-03-04 00:19:42 +0000 |
commit | d82e5d205f96ca9e60dabd9478b64fac0b4fd3a9 (patch) | |
tree | ab74eaef2c6f63fade06fe1184f73611982e7682 /src | |
parent | fb978c04b18fef71a0caa9737ea16688dfb25d74 (diff) | |
download | openttd-d82e5d205f96ca9e60dabd9478b64fac0b4fd3a9.tar.xz |
(svn r15607) -Codechange: support searching files without filtering on extension.
Diffstat (limited to 'src')
-rw-r--r-- | src/fileio.cpp | 21 |
1 files changed, 13 insertions, 8 deletions
diff --git a/src/fileio.cpp b/src/fileio.cpp index 85c4e2d04..a976135d0 100644 --- a/src/fileio.cpp +++ b/src/fileio.cpp @@ -1049,11 +1049,13 @@ static uint ScanPath(FileScanner *fs, const char *extension, const char *path, s num += ScanPath(fs, extension, filename, basepath_length, recursive); } else if (S_ISREG(sb.st_mode)) { /* File */ - char *ext = strrchr(filename, '.'); + if (extension != NULL) { + char *ext = strrchr(filename, '.'); - /* If no extension or extension isn't .grf, skip the file */ - if (ext == NULL) continue; - if (strcasecmp(ext, extension) != 0) continue; + /* If no extension or extension isn't .grf, skip the file */ + if (ext == NULL) continue; + if (strcasecmp(ext, extension) != 0) continue; + } if (fs->AddFile(filename, basepath_length)) num++; } @@ -1073,11 +1075,14 @@ static uint ScanTar(FileScanner *fs, const char *extension, TarFileList::iterato { uint num = 0; const char *filename = (*tar).first.c_str(); - const char *ext = strrchr(filename, '.'); - /* If no extension or extension isn't .grf, skip the file */ - if (ext == NULL) return false; - if (strcasecmp(ext, extension) != 0) return false; + if (extension != NULL) { + const char *ext = strrchr(filename, '.'); + + /* If no extension or extension isn't .grf, skip the file */ + if (ext == NULL) return false; + if (strcasecmp(ext, extension) != 0) return false; + } if (fs->AddFile(filename, 0)) num++; |