Repository: trafficserver Updated Branches: refs/heads/master 7663e6c6f -> 8dad69f7b
120 characters people ;). Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/8dad69f7 Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/8dad69f7 Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/8dad69f7 Branch: refs/heads/master Commit: 8dad69f7b79f3c568cce5c5d749235388ce7e7d3 Parents: 7663e6c Author: Leif Hedstrom <[email protected]> Authored: Fri Nov 21 10:30:51 2014 -0700 Committer: Leif Hedstrom <[email protected]> Committed: Fri Nov 21 10:30:51 2014 -0700 ---------------------------------------------------------------------- proxy/http/HttpTunnel.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/trafficserver/blob/8dad69f7/proxy/http/HttpTunnel.cc ---------------------------------------------------------------------- diff --git a/proxy/http/HttpTunnel.cc b/proxy/http/HttpTunnel.cc index 313789d..ac89726 100644 --- a/proxy/http/HttpTunnel.cc +++ b/proxy/http/HttpTunnel.cc @@ -728,8 +728,7 @@ HttpTunnel::tunnel_run(HttpTunnelProducer * p_arg) for (int i = 0 ; i < MAX_PRODUCERS ; ++i) { p = producers + i; - if (p->vc != NULL && - (p->alive || (p->vc_type == HT_STATIC && p->buffer_start != NULL))) { + if (p->vc != NULL && (p->alive || (p->vc_type == HT_STATIC && p->buffer_start != NULL))) { producer_run(p); } }
