aboutsummaryrefslogtreecommitdiffstats
path: root/src/storedPlaylist.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-10-09 16:26:09 +0200
committerMax Kellermann <max@duempel.org>2008-10-09 16:26:09 +0200
commit6b9ffcffe2c255a918398e58418466529d362da9 (patch)
tree60305d93604faf1ac777f04331ace7ad09767495 /src/storedPlaylist.c
parent4409c34a8c8b0020df78885ece8b01911413be21 (diff)
downloadmpd-6b9ffcffe2c255a918398e58418466529d362da9.tar.gz
mpd-6b9ffcffe2c255a918398e58418466529d362da9.tar.xz
mpd-6b9ffcffe2c255a918398e58418466529d362da9.zip
database: renamed get_get_song() to db_get_song()
Search'n'replace typo..
Diffstat (limited to 'src/storedPlaylist.c')
-rw-r--r--src/storedPlaylist.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/storedPlaylist.c b/src/storedPlaylist.c
index ffb87cafc..ca74ba8b1 100644
--- a/src/storedPlaylist.c
+++ b/src/storedPlaylist.c
@@ -116,7 +116,7 @@ List *loadStoredPlaylist(const char *utf8path)
!strncmp(s, musicDir, musicDir_len))
memmove(s, s + musicDir_len + 1,
strlen(s + musicDir_len + 1) + 1);
- if ((song = get_get_song(s))) {
+ if ((song = db_get_song(s))) {
song_get_url(song, path_max_tmp);
insertInListWithoutKey(list, xstrdup(path_max_tmp));
} else if (isValidRemoteUtf8Url(s))