From 87741a1133ed6be59408dd68c7ec12412c29b7d5 Mon Sep 17 00:00:00 2001 From: Amos Jeffries Date: Wed, 27 Jun 2012 23:15:20 -0600 Subject: [PATCH] Bug 3576: ICY streams being Transfer-Encoding:chunked --- src/client_side_reply.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/client_side_reply.cc b/src/client_side_reply.cc index d0df511bd9..4d0af98f34 100644 --- a/src/client_side_reply.cc +++ b/src/client_side_reply.cc @@ -1434,6 +1434,7 @@ clientReplyContext::buildReplyHeader() #endif const bool maySendChunkedReply = !request->multipartRangeRequest() && + reply->sline.protocol == AnyP::PROTO_HTTP && // response is HTTP (request->http_ver >= HttpVersion(1, 1)); /* Check whether we should send keep-alive */ -- 2.47.2