diff options
author | Max Kellermann <max@duempel.org> | 2008-10-08 11:07:55 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-10-08 11:07:55 +0200 |
commit | bb8a9533b1a2df4ea34be2c6f053f22fe49a60d0 (patch) | |
tree | 40fbdabccc553f9681753d2b4bc6b4aeb9760951 /src/playlist.c | |
parent | 7a023eb0b2d41ae0511c45449abada94df04dd7d (diff) | |
download | mpd-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/playlist.c')
-rw-r--r-- | src/playlist.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/playlist.c b/src/playlist.c index f1d3ce24c..438eb473b 100644 --- a/src/playlist.c +++ b/src/playlist.c @@ -559,7 +559,7 @@ enum playlist_result addToPlaylist(const char *url, int *added_id) DEBUG("add to playlist: %s\n", url); - if ((song = getSongFromDB(url))) { + if ((song = get_get_song(url))) { } else if (!(isValidRemoteUtf8Url(url) && (song = song_remote_new(url)))) { return PLAYLIST_RESULT_NO_SUCH_SONG; @@ -574,7 +574,7 @@ int addToStoredPlaylist(const char *url, const char *utf8file) DEBUG("add to stored playlist: %s\n", url); - song = getSongFromDB(url); + song = get_get_song(url); if (song) return appendSongToStoredPlaylistByPath(utf8file, song); @@ -1360,7 +1360,7 @@ int PlaylistInfo(struct client *client, const char *utf8file, int detail) int wrote = 0; if (detail) { - struct song *song = getSongFromDB(temp); + struct song *song = get_get_song(temp); if (song) { song_print_info(client, song); wrote = 1; |