changeset 1529:93176ec9a9fc stable-0.5

r1472 merge: response to the HEAD request should be a header only
author Igor Sysoev <igor@sysoev.ru>
date Sun, 23 Sep 2007 19:24:13 +0000
parents 4699bab788c0
children b7431340e7f8
files src/http/modules/ngx_http_empty_gif_module.c
diffstat 1 files changed, 1 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/src/http/modules/ngx_http_empty_gif_module.c
+++ b/src/http/modules/ngx_http_empty_gif_module.c
@@ -128,11 +128,7 @@ ngx_http_empty_gif_handler(ngx_http_requ
     if (r->method == NGX_HTTP_HEAD) {
         r->headers_out.status = NGX_HTTP_OK;
 
-        rc = ngx_http_send_header(r);
-
-        if (rc == NGX_ERROR || rc > NGX_OK || r->header_only) {
-            return rc;
-        }
+        return ngx_http_send_header(r);
     }
 
     b = ngx_pcalloc(r->pool, sizeof(ngx_buf_t));