aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/update.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/update.c b/src/update.c
index 29d8844b..01fb76dd 100644
--- a/src/update.c
+++ b/src/update.c
@@ -192,11 +192,10 @@ removeDeletedFromDirectory(char *path_max_tmp, struct directory *directory)
for (i = dv->nr; --i >= 0; ) {
const char *path_fs;
- struct stat st;
path_fs = map_directory_fs(dv->base[i], path_max_tmp);
- if (path_fs == NULL || (stat(path_fs, &st) == 0 &&
- S_ISDIR(st.st_mode)))
+ if (path_fs == NULL ||
+ !g_file_test(path_fs, G_FILE_TEST_IS_DIR))
continue;
g_debug("removing directory: %s", dv->base[i]->path);
dirvec_delete(dv, dv->base[i]);