aboutsummaryrefslogtreecommitdiffstats
path: root/src/storedPlaylist.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-10-08 11:07:55 +0200
committerMax Kellermann <max@duempel.org>2008-10-08 11:07:55 +0200
commitbb8a9533b1a2df4ea34be2c6f053f22fe49a60d0 (patch)
tree40fbdabccc553f9681753d2b4bc6b4aeb9760951 /src/storedPlaylist.c
parent7a023eb0b2d41ae0511c45449abada94df04dd7d (diff)
downloadmpd-bb8a9533b1a2df4ea34be2c6f053f22fe49a60d0.tar.gz
mpd-bb8a9533b1a2df4ea34be2c6f053f22fe49a60d0.tar.xz
mpd-bb8a9533b1a2df4ea34be2c6f053f22fe49a60d0.zip
database: renamed functions, "db_" prefix and no CamelCase
Yet another CamelCase removal patch.
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 f926e6eb3..ffb87cafc 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 = getSongFromDB(s))) {
+ if ((song = get_get_song(s))) {
song_get_url(song, path_max_tmp);
insertInListWithoutKey(list, xstrdup(path_max_tmp));
} else if (isValidRemoteUtf8Url(s))