diff options
author | Max Kellermann <max@duempel.org> | 2008-09-07 13:44:20 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-09-07 13:44:20 +0200 |
commit | d8ef33b71025decd52eaec5bb8417ad8e6dff873 (patch) | |
tree | 0b13311f3085a42b2479232536a4d94083c48df7 /src/playlist.c | |
parent | a8b225f947fc2d5e464222ea9b535c49fbce9ac9 (diff) | |
download | mpd-d8ef33b71025decd52eaec5bb8417ad8e6dff873.tar.gz mpd-d8ef33b71025decd52eaec5bb8417ad8e6dff873.tar.xz mpd-d8ef33b71025decd52eaec5bb8417ad8e6dff873.zip |
playlist: PlaylistInfo() does not call commandError()
Continuing the effort of removing protocol specific calls from the
core libraries: let the command.c code call commandError() based on
PlaylistInfo's return value.
Diffstat (limited to 'src/playlist.c')
-rw-r--r-- | src/playlist.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/playlist.c b/src/playlist.c index 107e67588..54ec74a5a 100644 --- a/src/playlist.c +++ b/src/playlist.c @@ -1342,11 +1342,8 @@ int PlaylistInfo(int fd, const char *utf8file, int detail) ListNode *node; List *list; - if (!(list = loadStoredPlaylist(utf8file))) { - commandError(fd, ACK_ERROR_NO_EXIST, "could not open playlist " - "\"%s\": %s", utf8file, strerror(errno)); + if (!(list = loadStoredPlaylist(utf8file))) return -1; - } node = list->firstNode; while (node != NULL) { |