Fix synchronizer instruction on update detection for changed files.

This commit is contained in:
Andreas Schneider 2008-05-15 12:04:09 +02:00
Родитель 320f07f631
Коммит 49543390e2
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -113,7 +113,7 @@ static int csync_detect_update(CSYNC *ctx, const char *file, const csync_vio_fil
} else {
/* we have an update! */
if (fs->mtime > tmp->modtime) {
st->instruction = CSYNC_INSTRUCTION_SYNC;
st->instruction = CSYNC_INSTRUCTION_EVAL;
goto out;
}
/* FIXME: check mode too? */