17 lines
498 B
Text
17 lines
498 B
Text
Index: bin/varnishd/cache_fetch.c
|
|
===================================================================
|
|
--- bin/varnishd/cache_fetch.c (revision 5460)
|
|
+++ bin/varnishd/cache_fetch.c (revision 5461)
|
|
@@ -552,9 +552,11 @@
|
|
assert(uu == sp->obj->len);
|
|
}
|
|
|
|
- if (mklen > 0)
|
|
+ if (mklen > 0) {
|
|
+ http_Unset(sp->obj->http, H_Content_Length);
|
|
http_PrintfHeader(sp->wrk, sp->fd, sp->obj->http,
|
|
"Content-Length: %u", sp->obj->len);
|
|
+ }
|
|
|
|
if (http_HdrIs(hp, H_Connection, "close"))
|
|
cls = 1;
|