From: Mike Brady Date: Wed, 27 Feb 2019 11:58:03 +0000 (+0000) Subject: Remove a change that proved unnecessary to replay a write() with a non-blocking write(). X-Git-Tag: 3.3RC0~5^2~12 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=621f70a4df72b7b07fb1e595d4d34c04373bc57a;p=thirdparty%2Fshairport-sync.git Remove a change that proved unnecessary to replay a write() with a non-blocking write(). --- diff --git a/rtsp.c b/rtsp.c index 3f27a982..5b6748f1 100644 --- a/rtsp.c +++ b/rtsp.c @@ -779,7 +779,7 @@ int msg_write_response(int fd, rtsp_message *resp) { debug(1, "Attempted to write overlong RTSP packet 3"); return -3; } - ssize_t reply = non_blocking_write_with_timeout(fd, pkt, p - pkt, 3000); // wait three seconds (3,000 milliseconds) for it to become available + ssize_t reply = write(fd, pkt, p - pkt); if (reply == -1) { char errorstring[1024]; strerror_r(errno, (char *)errorstring, sizeof(errorstring));