diff options
author | Qball Cow <qball@qballcow.nl> | 2007-08-19 19:48:39 +0000 |
---|---|---|
committer | Qball Cow <qball@qballcow.nl> | 2007-08-19 19:48:39 +0000 |
commit | ae2ecb4054180da4597958a79da6c9f6bcf7bebd (patch) | |
tree | 6c81b8d3102864cd5c830b70d2f7fe63be89abe4 /src/storedPlaylist.c | |
parent | 6dc71a392896d8e1ad1dcec8dc445ab633de7089 (diff) | |
download | mpd-ae2ecb4054180da4597958a79da6c9f6bcf7bebd.tar.gz mpd-ae2ecb4054180da4597958a79da6c9f6bcf7bebd.tar.xz mpd-ae2ecb4054180da4597958a79da6c9f6bcf7bebd.zip |
Custom patch to add a playlist versioning number, needs testing2
git-svn-id: https://svn.musicpd.org/mpd/branches/q-mpd@6766 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to '')
-rw-r--r-- | src/storedPlaylist.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/storedPlaylist.c b/src/storedPlaylist.c index e0ed0e745..a62ee313c 100644 --- a/src/storedPlaylist.c +++ b/src/storedPlaylist.c @@ -114,7 +114,6 @@ static ListNode *nodeOfStoredPlaylist(StoredPlaylist *sp, int index) static void appendSongToStoredPlaylist(StoredPlaylist *sp, Song *song) { insertInListWithoutKey(sp->list, xstrdup(getSongUrl(song))); - incrStoredPlaylistVersion(); } StoredPlaylist *newStoredPlaylist(const char *utf8name, int fd, int ignoreExisting) |