From 93e6d4c3adff4cfd06af77082793a0ba0fcf5fa5 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sun, 7 Sep 2008 14:02:52 +0200 Subject: playlist: don't pass "fd" to showPlaylist(), playlistChangesPosId() Pass the client struct instead of the raw file descriptor. --- src/command.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/command.c') diff --git a/src/command.c b/src/command.c index 1502477ab..755d1a586 100644 --- a/src/command.c +++ b/src/command.c @@ -525,7 +525,7 @@ static int handleDeleteId(struct client *client, mpd_unused int *permission, static int handlePlaylist(struct client *client, mpd_unused int *permission, mpd_unused int argc, mpd_unused char *argv[]) { - showPlaylist(client_get_fd(client)); + showPlaylist(client); return 0; } @@ -641,7 +641,7 @@ static int handlePlaylistChangesPosId(struct client *client, mpd_unused int *per if (check_uint32(client, &version, argv[1], need_positive) < 0) return -1; - return playlistChangesPosId(client_get_fd(client), version); + return playlistChangesPosId(client, version); } static int handlePlaylistInfo(struct client *client, mpd_unused int *permission, -- cgit v1.2.3