diff options
author | Igor Sysoev <igor@sysoev.ru> | 2009-05-08 14:52:50 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2009-05-08 14:52:50 +0000 |
commit | ad0b9303d0996f0bb91c64e150e8dd6029631ae1 (patch) | |
tree | 15e051adfe94eccf38d0af19119016c8b6cce5fb /src/http/ngx_http.h | |
parent | 8bb39121fc66b35c83132fe2c05dd5b995daeecf (diff) | |
download | nginx-ad0b9303d0996f0bb91c64e150e8dd6029631ae1.tar.gz |
allow to pass image filter errors via the same location where the filter is set
Diffstat (limited to 'src/http/ngx_http.h')
-rw-r--r-- | src/http/ngx_http.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/ngx_http.h b/src/http/ngx_http.h index 2c442be9f..9444b1131 100644 --- a/src/http/ngx_http.h +++ b/src/http/ngx_http.h @@ -104,7 +104,7 @@ ngx_int_t ngx_http_send_header(ngx_http_request_t *r); ngx_int_t ngx_http_special_response_handler(ngx_http_request_t *r, ngx_int_t error); ngx_int_t ngx_http_filter_finalize_request(ngx_http_request_t *r, - ngx_int_t error); + ngx_module_t *m, ngx_int_t error); void ngx_http_clean_header(ngx_http_request_t *r); |