From ac7ef037b520cfe961942aa2f18a75c6408a7150 Mon Sep 17 00:00:00 2001 From: "J. Alexander Treuman" Date: Fri, 21 Jul 2006 17:11:45 +0000 Subject: Use getBoolConfigParam for save_absolute_paths_in_playlist git-svn-id: https://svn.musicpd.org/mpd/trunk@4418 09075e82-0dd4-0310-85a5-a0d7c8717e4f --- src/playlist.c | 16 ++-------------- 1 file changed, 2 insertions(+), 14 deletions(-) (limited to 'src/playlist.c') diff --git a/src/playlist.c b/src/playlist.c index a37ee76f3..c7ef9d17f 100644 --- a/src/playlist.c +++ b/src/playlist.c @@ -166,20 +166,8 @@ void initPlaylist(void) } } - param = getConfigParam(CONF_SAVE_ABSOLUTE_PATHS); - - if (param) { - if (0 == strcmp("yes", param->value)) { - playlist_saveAbsolutePaths = 1; - } else if (0 == strcmp("no", param->value)) { - playlist_saveAbsolutePaths = 0; - } else { - ERROR("%s \"%s\" is not yes or no, line %i" - CONF_SAVE_ABSOLUTE_PATHS, - param->value, param->line); - exit(EXIT_FAILURE); - } - } + playlist_saveAbsolutePaths = getBoolConfigParam(CONF_SAVE_ABSOLUTE_PATHS); + playlist_saveAbsolutePaths = playlist_saveAbsolutePaths < 0 ? 0 : playlist_saveAbsolutePaths; playlist.songs = malloc(sizeof(Song *) * playlist_max_length); playlist.songMod = malloc(sizeof(mpd_uint32) * playlist_max_length); -- cgit v1.2.3