* Break out earlier if we see a CLOSE_WRITE, but the file hasn't changed.

This commit is contained in:
Justin Maggard 2010-09-28 07:59:11 +00:00
parent a600d8a231
commit 263b93fb92

View File

@ -706,8 +706,12 @@ start_inotify()
{
if( stat(path_buf, &st) == 0 && st.st_size > 0 )
{
DPRINTF(E_DEBUG, L_INOTIFY, "The file %s was %s.\n", path_buf, (event->mask & IN_MOVED_TO ? "moved here" : "changed"));
inotify_insert_file(esc_name, path_buf);
if( (event->mask & IN_MOVED_TO) ||
(sql_get_int_field(db, "SELECT TIMESTAMP from DETAILS where PATH = '%q'", path_buf) != st.st_mtime) )
{
DPRINTF(E_DEBUG, L_INOTIFY, "The file %s was %s.\n", path_buf, (event->mask & IN_MOVED_TO ? "moved here" : "changed"));
inotify_insert_file(esc_name, path_buf);
}
}
}
else if ( event->mask & IN_DELETE || event->mask & IN_MOVED_FROM )