comparison src/http/modules/ngx_http_static_module.c @ 1370:cc114c85be0f

rename ngx_http_discard_body() to ngx_http_discard_request_body()
author Igor Sysoev <igor@sysoev.ru>
date Mon, 06 Aug 2007 15:37:22 +0000
parents c4f666fc3a7e
children aabbf66b61ea
comparison
equal deleted inserted replaced
1369:6254b90eea4b 1370:cc114c85be0f
98 /* TODO: Win32 */ 98 /* TODO: Win32 */
99 if (r->zero_in_uri) { 99 if (r->zero_in_uri) {
100 return NGX_DECLINED; 100 return NGX_DECLINED;
101 } 101 }
102 102
103 rc = ngx_http_discard_body(r); 103 rc = ngx_http_discard_request_body(r);
104 104
105 if (rc != NGX_OK && rc != NGX_AGAIN) { 105 if (rc != NGX_OK && rc != NGX_AGAIN) {
106 return rc; 106 return rc;
107 } 107 }
108 108