]> git.ipfire.org Git - thirdparty/shairport-sync.git/commitdiff
Fix a diagnostic that actually caused the connection to be dropped occasinally.
authorMike Brady <mikebrady@eircom.net>
Sat, 7 May 2016 08:41:51 +0000 (09:41 +0100)
committerMike Brady <mikebrady@eircom.net>
Sat, 7 May 2016 08:41:51 +0000 (09:41 +0100)
rtsp.c

diff --git a/rtsp.c b/rtsp.c
index 976effe18ff4bc7573de9b87318424ae5511913f..c41f75400eef7d105b7f814b7a4ea5999b839301 100644 (file)
--- a/rtsp.c
+++ b/rtsp.c
@@ -498,11 +498,13 @@ rtsp_read_request(rtsp_conn_info *conn, rtsp_message **the_packet) {
       goto shutdown;
     }
     nread = read(conn->fd, buf + inbuf, buflen - inbuf);
+    /*
     if (!nread) {
       debug(2, "RTSP connection closed.");
       reply = rtsp_read_request_response_shutdown_requested;
       goto shutdown;
     }
+    */
     if (nread < 0) {
       if (errno == EINTR)
         continue;