From 446abc3b4d5ac9427ee9e3cf2076e17570ee832f Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Fri, 24 Nov 2006 13:19:13 +0000 Subject: [PATCH] axe unused code --- src/http/modules/perl/ngx_http_perl_module.c | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/src/http/modules/perl/ngx_http_perl_module.c b/src/http/modules/perl/ngx_http_perl_module.c index 4fd19485f..53b2f49cb 100644 --- a/src/http/modules/perl/ngx_http_perl_module.c +++ b/src/http/modules/perl/ngx_http_perl_module.c @@ -200,24 +200,6 @@ ngx_http_perl_handler(ngx_http_request_t *r) ngx_http_perl_handle_request(r); return NGX_DONE; - -#if 0 - r->request_body_in_single_buf = 1; - r->request_body_in_persistent_file = 1; - r->request_body_delete_incomplete_file = 1; - - if (r->request_body_in_file_only) { - r->request_body_file_log_level = 0; - } - - rc = ngx_http_read_client_request_body(r, ngx_http_perl_handle_request); - - if (rc >= NGX_HTTP_SPECIAL_RESPONSE) { - return rc; - } - - return NGX_DONE; -#endif }