diff options
author | Igor Sysoev <igor@sysoev.ru> | 2006-08-04 16:04:04 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2006-08-04 16:04:04 +0000 |
commit | b71c690895870290663dd4eef453d195209269ce (patch) | |
tree | f95ec569e2482a95ee2789e5e25991d0fbbb92e6 /src/http/ngx_http_script.c | |
parent | 9bda615eef680b3a2ea8ceccb51a872a4bcc340e (diff) | |
download | nginx-b71c690895870290663dd4eef453d195209269ce.tar.gz nginx-b71c690895870290663dd4eef453d195209269ce.zip |
nginx-0.3.56-RELEASE importrelease-0.3.56
*) 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.
Diffstat (limited to 'src/http/ngx_http_script.c')
-rw-r--r-- | src/http/ngx_http_script.c | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/src/http/ngx_http_script.c b/src/http/ngx_http_script.c index 83c199884..947bce6d8 100644 --- a/src/http/ngx_http_script.c +++ b/src/http/ngx_http_script.c @@ -961,8 +961,13 @@ ngx_http_script_file_code(ngx_http_script_engine_t *e) switch (code->op) { case ngx_http_script_file_plain: + case ngx_http_script_file_dir: + case ngx_http_script_file_exists: + case ngx_http_script_file_exec: goto false; case ngx_http_script_file_not_plain: + case ngx_http_script_file_not_dir: + case ngx_http_script_file_not_exec: goto true; } @@ -981,6 +986,54 @@ ngx_http_script_file_code(ngx_http_script_engine_t *e) goto false; } goto true; + + case ngx_http_script_file_dir: + if (ngx_is_dir(&fi)) { + goto true; + } + goto false; + + case ngx_http_script_file_not_dir: + if (ngx_is_dir(&fi)) { + goto false; + } + goto true; + + case ngx_http_script_file_exists: + if (ngx_is_file(&fi) || ngx_is_dir(&fi) || ngx_is_link(&fi)) { + goto true; + } + goto false; + + case ngx_http_script_file_not_exists: + if (ngx_is_file(&fi) || ngx_is_dir(&fi) || ngx_is_link(&fi)) { + goto false; + } + goto true; + +#if (NGX_WIN32) + + case ngx_http_script_file_exec: + goto false; + + case ngx_http_script_file_not_exec: + goto true; + +#else + + case ngx_http_script_file_exec: + if (ngx_is_exec(&fi)) { + goto true; + } + goto false; + + case ngx_http_script_file_not_exec: + if (ngx_is_exec(&fi)) { + goto false; + } + goto true; + +#endif } false: |