From f8e586402d2b3c70fa0f28fc3ad6e542128e5562 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Wed, 22 Oct 2008 19:16:35 +0200 Subject: command: added print_spl_list() The function print_spl_list() replaces the old function lsPlaylists() from ls.c. --- src/ls.c | 18 ------------------ 1 file changed, 18 deletions(-) (limited to 'src/ls.c') diff --git a/src/ls.c b/src/ls.c index 15b7b4813..b70952214 100644 --- a/src/ls.c +++ b/src/ls.c @@ -98,24 +98,6 @@ int isRemoteUrl(const char *url) return 0; } -int lsPlaylists(struct client *client, const char *utf8path) -{ - GPtrArray *list = spl_list(); - if (list == NULL) - return 0; - - for (unsigned i = 0; i < list->len; ++i) { - struct stored_playlist_info *playlist = - g_ptr_array_index(list, i); - - client_printf(client, "playlist: %s%s\n", - utf8path, playlist->name); - } - - spl_list_free(list); - return 0; -} - /* suffixes should be ascii only characters */ const char *getSuffix(const char *utf8file) { -- cgit v1.2.3