From 3421f1871f992e4a973039db4fc99697d8ea4ecb Mon Sep 17 00:00:00 2001 From: Klaas Freitag Date: Thu, 10 Oct 2013 12:22:59 +0200 Subject: [PATCH] Disable inode check for all platforms. (core #4953) --- src/csync_update.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/csync_update.c b/src/csync_update.c index e252d383ba..72e8c07626 100644 --- a/src/csync_update.c +++ b/src/csync_update.c @@ -215,7 +215,7 @@ static int _csync_detect_update(CSYNC *ctx, const char *file, } if((ctx->current == REMOTE_REPLICA && !c_streq(fs->md5, tmp->md5 )) || (ctx->current == LOCAL_REPLICA && (fs->mtime != tmp->modtime -#ifndef _WIN32 +#if 0 || fs->inode != tmp->inode #endif ))) {