From cd108ba3aa9f4b0b8ebea3ce463c1e6e1e5a5abe Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sun, 27 Nov 2011 20:15:25 +0100 Subject: directory: rename attribute "stat" to "have_stat" "stat" is a macro on mingw32, which is a pretty stupid thing, and this commit works around this build failure. --- src/directory.h | 2 +- src/update_walk.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/directory.h b/src/directory.h index 5c36291e..9c0a9b56 100644 --- a/src/directory.h +++ b/src/directory.h @@ -43,7 +43,7 @@ struct directory { time_t mtime; ino_t inode; dev_t device; - bool stat; /* not needed if ino_t == dev_t == 0 is impossible */ + bool have_stat; /* not needed if ino_t == dev_t == 0 is impossible */ char path[sizeof(long)]; }; diff --git a/src/update_walk.c b/src/update_walk.c index 76c07773..426bd62f 100644 --- a/src/update_walk.c +++ b/src/update_walk.c @@ -86,7 +86,7 @@ directory_set_stat(struct directory *dir, const struct stat *st) { dir->inode = st->st_ino; dir->device = st->st_dev; - dir->stat = true; + dir->have_stat = true; } static void @@ -346,7 +346,7 @@ inodeFoundInParent(struct directory *parent, ino_t inode, dev_t device) { #ifndef G_OS_WIN32 while (parent) { - if (!parent->stat && statDirectory(parent) < 0) + if (!parent->have_stat && statDirectory(parent) < 0) return -1; if (parent->inode == inode && parent->device == device) { g_debug("recursive directory found"); -- cgit v1.2.3