aboutsummaryrefslogtreecommitdiffstats
path: root/runtest.c
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@src.gnome.org>2005-07-04 16:31:10 +0000
committerDaniel Veillard <veillard@src.gnome.org>2005-07-04 16:31:10 +0000
commit9e09c1441f0b67d4e359d73dd2e349410688d7a2 (patch)
treeb6d57d6b7172f4965e4282bb38f2bed8aacaffc7 /runtest.c
parent89074392a2452bca9bfff74546a8d0a6790bc73f (diff)
downloadandroid_external_libxml2-9e09c1441f0b67d4e359d73dd2e349410688d7a2.tar.gz
android_external_libxml2-9e09c1441f0b67d4e359d73dd2e349410688d7a2.tar.bz2
android_external_libxml2-9e09c1441f0b67d4e359d73dd2e349410688d7a2.zip
Yet Another Windows Debugging Remote Patch From CVS Hell, Daniel
Diffstat (limited to 'runtest.c')
-rw-r--r--runtest.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtest.c b/runtest.c
index e29ffb6a..52dcf952 100644
--- a/runtest.c
+++ b/runtest.c
@@ -130,7 +130,7 @@ static int glob(const char *pattern, int flags,
goto done;
ret->gl_pathc++;
while(FindNextFileA(hFind, &FindFileData)) {
- if (!strstr(FindFileData.cFileName, "/."))
+ if (strstr(FindFileData.cFileName, "/."))
continue;
if (ret->gl_pathc + 2 > nb_paths) {
char **tmp = realloc(ret->gl_pathv, nb_paths * 2 * sizeof(char *));