From: phk Date: Mon, 31 Mar 2008 22:07:15 +0000 (+0000) Subject: Emit an extra CR+NL after the end of chunked encoding. X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3831386387fe02b0797ec1d3ec29ae8a07eed5df;p=varnish Emit an extra CR+NL after the end of chunked encoding. git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/trunk@2617 d4fa192b-c00b-0410-8231-f00ffab90ce4 --- diff --git a/varnish-cache/bin/varnishd/cache_vrt_esi.c b/varnish-cache/bin/varnishd/cache_vrt_esi.c index 35f12d89..e794ef6c 100644 --- a/varnish-cache/bin/varnishd/cache_vrt_esi.c +++ b/varnish-cache/bin/varnishd/cache_vrt_esi.c @@ -786,7 +786,7 @@ ESI_Deliver(struct sess *sp) } if (sp->esis == 0) - WRK_Write(sp->wrk, "0\r\n", -1); + WRK_Write(sp->wrk, "0\r\n\r\n", -1); } /*--------------------------------------------------------------------*/