Disable inode check for all platforms. (core #4953)

This commit is contained in:
Klaas Freitag 2013-10-10 12:22:59 +02:00
parent 8f1e318cde
commit c34b861332

View file

@ -206,7 +206,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
))) {