From: Mike Brady <4265913+mikebrady@users.noreply.github.com> Date: Wed, 12 May 2021 10:00:09 +0000 (+0100) Subject: Fix a compilation bug and quieten a debug message. X-Git-Tag: 4.0-dev~11 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4a0849b942739783ec64a9f2beb20fc5c36a9fda;p=thirdparty%2Fshairport-sync.git Fix a compilation bug and quieten a debug message. --- diff --git a/rtsp.c b/rtsp.c index a5564f1e..c670455b 100644 --- a/rtsp.c +++ b/rtsp.c @@ -1811,7 +1811,7 @@ void handle_flush(rtsp_conn_info *conn, rtsp_message *req, rtsp_message *resp) { rtptime = uatoi(p + 1); // unsigned integer -- up to 2^32-1 } } - debug(1, "RTSP Flush Requested: %u.", rtptime); + debug(2, "RTSP Flush Requested: %u.", rtptime); if (have_play_lock(conn)) { #ifdef CONFIG_METADATA if (p) @@ -1819,8 +1819,11 @@ void handle_flush(rtsp_conn_info *conn, rtsp_message *req, rtsp_message *resp) { else send_metadata('ssnc', 'flsr', NULL, 0, NULL, 0); #endif - // hack -- ignore it for airplay 2 + +// hack -- ignore it for airplay 2 +#ifdef CONFIG_AIRPLAY_2 if (conn->airplay_type != ap_2) +#endif player_flush(rtptime, conn); // will not crash even it there is no player thread. resp->respcode = 200;