From d54092b84255f7990c570437cb46866d9fa11e2a Mon Sep 17 00:00:00 2001 From: "Sergey A. Osokin" Date: Thu, 3 Jun 2010 22:07:36 +0200 Subject: [PATCH] Fix build with latest development versions of Nginx The zero_in_uri member of the request structure does not longer exist, so removed a reference to it. Signed-off-by: Adrian Perez --- ngx_http_fancyindex_module.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/ngx_http_fancyindex_module.c b/ngx_http_fancyindex_module.c index 515ecf1..435485f 100644 --- a/ngx_http_fancyindex_module.c +++ b/ngx_http_fancyindex_module.c @@ -591,9 +591,6 @@ ngx_http_fancyindex_handler(ngx_http_request_t *r) } /* TODO: Win32 */ - if (r->zero_in_uri) { - return NGX_DECLINED; - } if (!(r->method & (NGX_HTTP_GET|NGX_HTTP_HEAD))) { return NGX_DECLINED;