From 832571f0fc6c94471d55f3a73e5fa154d0bd2b1c Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Mon, 6 Aug 2007 15:37:22 +0000 Subject: rename ngx_http_discard_body() to ngx_http_discard_request_body() --- src/http/modules/ngx_http_stub_status_module.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/http/modules/ngx_http_stub_status_module.c') diff --git a/src/http/modules/ngx_http_stub_status_module.c b/src/http/modules/ngx_http_stub_status_module.c index 4fe9c04d5..10b393739 100644 --- a/src/http/modules/ngx_http_stub_status_module.c +++ b/src/http/modules/ngx_http_stub_status_module.c @@ -69,7 +69,7 @@ static ngx_int_t ngx_http_status_handler(ngx_http_request_t *r) return NGX_HTTP_NOT_ALLOWED; } - rc = ngx_http_discard_body(r); + rc = ngx_http_discard_request_body(r); if (rc != NGX_OK && rc != NGX_AGAIN) { return rc; -- cgit