From 42ac0528a9752011450668fcac90c9b975567214 Mon Sep 17 00:00:00 2001 From: Fabian Groffen Date: Mon, 5 Aug 2024 20:38:36 +0200 Subject: [PATCH] [mpd] update server version to 0.21.0 Signed-off-by: Fabian Groffen --- src/mpd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mpd.c b/src/mpd.c index 718d0ee542..e837caef76 100644 --- a/src/mpd.c +++ b/src/mpd.c @@ -4582,7 +4582,7 @@ mpd_accept_conn_cb(struct evconnlistener *listener, * According to the mpd protocol send "OK MPD \n" to the client, where version is the version * of the supported mpd protocol and not the server version. */ - evbuffer_add(bufferevent_get_output(bev), "OK MPD 0.20.0\n", 14); + evbuffer_add(bufferevent_get_output(bev), "OK MPD 0.21.0\n", 14); client_ctx->evbuffer = bufferevent_get_output(bev); DPRINTF(E_INFO, L_MPD, "New mpd client connection accepted\n");