summaryrefslogtreecommitdiff
path: root/package/mpd
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2013-10-09 17:22:43 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2013-10-09 17:22:43 +0200
commit204c8dfb7a594e7394041bbf6d081dbae1408185 (patch)
tree96ad9e5574420b16dcf0305b0a4141c65e8f36a7 /package/mpd
parentaf7ff722d227eb374dc035f7bf890ee4db8cdf11 (diff)
add a message after writing the database to log
Diffstat (limited to 'package/mpd')
-rw-r--r--package/mpd/patches/patch-src_db_simple_db_plugin_c11
1 files changed, 11 insertions, 0 deletions
diff --git a/package/mpd/patches/patch-src_db_simple_db_plugin_c b/package/mpd/patches/patch-src_db_simple_db_plugin_c
new file mode 100644
index 000000000..4158c5b8e
--- /dev/null
+++ b/package/mpd/patches/patch-src_db_simple_db_plugin_c
@@ -0,0 +1,11 @@
+--- mpd-0.17.5.orig/src/db/simple_db_plugin.c 2013-08-01 09:15:41.000000000 +0200
++++ mpd-0.17.5/src/db/simple_db_plugin.c 2013-10-08 15:28:10.000000000 +0200
+@@ -338,6 +338,8 @@ simple_db_save(struct db *_db, GError **
+
+ fclose(fp);
+
++ g_message("Successfully written database to file: %s", db->path);
++
+ struct stat st;
+ if (stat(db->path, &st) == 0)
+ db->mtime = st.st_mtime;