From da7166bdd2bdbfc017fabfe20e766ece737a5fe4 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Thu, 9 Oct 2008 19:20:59 +0200 Subject: update: don't print debug message when song was not modified When a song file was not modified, MPD printed the debug message "not a directory or music", because the first "if" branch did not return. --- src/update.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'src/update.c') diff --git a/src/update.c b/src/update.c index 607959b1a..c4842f142 100644 --- a/src/update.c +++ b/src/update.c @@ -252,6 +252,8 @@ updateInDirectory(struct directory *directory, delete_song(directory, song); return UPDATE_RETURN_UPDATED; } + + return UPDATE_RETURN_NOUPDATE; } else if (S_ISDIR(st->st_mode)) { struct directory *subdir; enum update_return ret; @@ -270,11 +272,10 @@ updateInDirectory(struct directory *directory, delete_directory(subdir); return ret; + } else { + DEBUG("update: %s is not a directory or music\n", name); + return UPDATE_RETURN_NOUPDATE; } - - DEBUG("update: %s is not a directory or music\n", name); - - return UPDATE_RETURN_NOUPDATE; } /* we don't look at hidden files nor files with newlines in them */ -- cgit v1.2.3