nginx-0.3.14-RELEASE import
*) Bugfix: in the 304 response the body was transferred; the bug had
appeared in 0.3.13.
diff --git a/src/http/modules/ngx_http_static_module.c b/src/http/modules/ngx_http_static_module.c
index 1504f24..e9d2b39 100644
--- a/src/http/modules/ngx_http_static_module.c
+++ b/src/http/modules/ngx_http_static_module.c
@@ -264,7 +264,7 @@
rc = ngx_http_send_header(r);
- if (rc == NGX_ERROR || rc > NGX_OK) {
+ if (rc == NGX_ERROR || rc > NGX_OK || r->header_only) {
return rc;
}