# HG changeset patch # User Igor Sysoev # Date 1164374353 0 # Node ID 6a99bc84c13508837ac0cd0ba1573175acb1abcd # Parent 8d77ff798f5cd8ae5d21d4b9e23c94e18cec4ef5 axe unused code diff --git a/src/http/modules/perl/ngx_http_perl_module.c b/src/http/modules/perl/ngx_http_perl_module.c --- 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 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 }