From f59986fad5dd8e00beffcd038112d81963408539 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sun, 7 Sep 2008 13:57:26 +0200 Subject: playlist: pass struct client to loadPlaylist() The function loadPlaylist() wants to report incremental errors to the client, for this reason we cannot remove its protocol dependency right now. Instead, make it use the client struct instead of the raw file descriptor. --- src/command.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/command.c') diff --git a/src/command.c b/src/command.c index e6fb64a6c..4d703498f 100644 --- a/src/command.c +++ b/src/command.c @@ -575,7 +575,7 @@ static int handleLoad(struct client *client, mpd_unused int *permission, { enum playlist_result result; - result = loadPlaylist(client_get_fd(client), argv[1]); + result = loadPlaylist(client, argv[1]); return print_playlist_result(client, result); } -- cgit v1.2.3