playlist_print: use playlist_open_any()

Allow printing remote playlists with the commands "listplaylist" and
"listplaylistinfo".
This commit is contained in:
Max Kellermann 2010-06-25 22:09:04 +02:00
parent 373d1843a8
commit 5216cfb3c8
1 changed files with 2 additions and 2 deletions

View File

@ -21,7 +21,7 @@
#include "playlist_print.h"
#include "playlist_list.h"
#include "playlist_plugin.h"
#include "playlist_mapper.h"
#include "playlist_any.h"
#include "playlist_song.h"
#include "queue_print.h"
#include "stored_playlist.h"
@ -170,7 +170,7 @@ bool
playlist_file_print(struct client *client, const char *uri, bool detail)
{
struct input_stream *is;
struct playlist_provider *playlist = playlist_mapper_open(uri, &is);
struct playlist_provider *playlist = playlist_open_any(uri, &is);
if (playlist == NULL)
return false;