aboutsummaryrefslogtreecommitdiff
path: root/src/update.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2009-08-30 09:42:12 +0200
committerMax Kellermann <max@duempel.org>2009-08-30 09:42:12 +0200
commitf2ff2409adbd18758edfffd6f6021b521eb66c7d (patch)
treea1e6c30ece0d7259861b808fe954c77448afc47c /src/update.c
parentbff4c54ece5d6ebf84c1a19a05afbeba57bf65ae (diff)
parent7a690c6b7042315d0756d0a4a45046fc21a1cad8 (diff)
Merged release 0.15.3 from branch 'v0.15.x'
Conflicts: NEWS configure.ac
Diffstat (limited to 'src/update.c')
-rw-r--r--src/update.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/update.c b/src/update.c
index 6778a598..cfe574e1 100644
--- a/src/update.c
+++ b/src/update.c
@@ -502,7 +502,8 @@ update_regular_file(struct directory *directory,
{
struct song* song = songvec_find(&directory->songs, name);
- if (plugin->container_scan != NULL)
+ if (!(song != NULL && st->st_mtime == song->mtime) &&
+ plugin->container_scan != NULL)
{
if (update_container_file(directory, name, st, plugin))
{