From 2d24665983a42bbd8fe72997cd185477dffccab2 Mon Sep 17 00:00:00 2001 From: Mike Brady <4265913+mikebrady@users.noreply.github.com> Date: Sun, 17 Sep 2023 14:30:02 +0100 Subject: [PATCH 1/2] Fix a bug that prevented Shairport Sync being added to Home. --- rtsp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rtsp.c b/rtsp.c index 64c3c3bfd..732bb93e2 100644 --- a/rtsp.c +++ b/rtsp.c @@ -3144,8 +3144,8 @@ void handle_setup_2(rtsp_conn_info *conn, rtsp_message *req, rtsp_message *resp) cancel_all_RTSP_threads( remote_control_stream, conn->connection_number); // kill all the other remote control listeners - resp->respcode = 200; */ + resp->respcode = 200; } else { debug(1, "SETUP on Connection %d: an unrecognised \"%s\" setup detected.", conn->connection_number, timingProtocolString); From e6a2a4296100e2ab0d1795ca45965623a74f426c Mon Sep 17 00:00:00 2001 From: Mike Brady <4265913+mikebrady@users.noreply.github.com> Date: Sun, 17 Sep 2023 15:22:15 +0100 Subject: [PATCH 2/2] update/correct configure.ac version info --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 743b47438..e5da15e1a 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ([2.50]) -AC_INIT([shairport-sync], [4.2.1-dev], [4265913+mikebrady@users.noreply.github.com]) +AC_INIT([shairport-sync], [4.3.1-dev], [4265913+mikebrady@users.noreply.github.com]) AM_INIT_AUTOMAKE([subdir-objects]) AC_CONFIG_SRCDIR([shairport.c]) AC_CONFIG_HEADERS([config.h])