From b71c690895870290663dd4eef453d195209269ce Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Fri, 4 Aug 2006 16:04:04 +0000 Subject: nginx-0.3.56-RELEASE import *) Feature: the "dav_access" directive. *) Feature: the "if" directive supports the "-d", "!-d", "-e", "!-e", "-x", and "!-x" operators. *) Bugfix: a segmentation fault occurred if a request returned a redirect and some sent to client header lines were logged in the access log. --- src/http/ngx_http_script.h | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'src/http/ngx_http_script.h') diff --git a/src/http/ngx_http_script.h b/src/http/ngx_http_script.h index c4aa408c0..cac765068 100644 --- a/src/http/ngx_http_script.h +++ b/src/http/ngx_http_script.h @@ -140,7 +140,13 @@ typedef struct { typedef enum { ngx_http_script_file_plain = 0, - ngx_http_script_file_not_plain + ngx_http_script_file_not_plain, + ngx_http_script_file_dir, + ngx_http_script_file_not_dir, + ngx_http_script_file_exists, + ngx_http_script_file_not_exists, + ngx_http_script_file_exec, + ngx_http_script_file_not_exec } ngx_http_script_file_op_e; -- cgit