comparison src/http/ngx_http_script.c @ 220:559bc7ec214e NGINX_0_3_57

nginx 0.3.57 *) Feature: the $ssl_client_serial variable. *) Bugfix: in the "!-e" operator of the "if" directive. Thanks to Andrian Budanstov. *) Bugfix: while a client certificate verification nginx did not send to a client the required certificates information. *) Bugfix: the $document_root variable did not support the variables in the "root" directive.
author Igor Sysoev <http://sysoev.ru>
date Wed, 09 Aug 2006 00:00:00 +0400
parents 1bf60f8c5c9e
children dd6c66b5b0e2
comparison
equal deleted inserted replaced
219:8045828c3706 220:559bc7ec214e
958 ngx_log_error(NGX_LOG_CRIT, e->request->connection->log, err, 958 ngx_log_error(NGX_LOG_CRIT, e->request->connection->log, err,
959 ngx_file_info_n " \"%s\" failed", value->data); 959 ngx_file_info_n " \"%s\" failed", value->data);
960 } 960 }
961 961
962 switch (code->op) { 962 switch (code->op) {
963
963 case ngx_http_script_file_plain: 964 case ngx_http_script_file_plain:
964 case ngx_http_script_file_dir: 965 case ngx_http_script_file_dir:
965 case ngx_http_script_file_exists: 966 case ngx_http_script_file_exists:
966 case ngx_http_script_file_exec: 967 case ngx_http_script_file_exec:
967 goto false; 968 goto false;
969
968 case ngx_http_script_file_not_plain: 970 case ngx_http_script_file_not_plain:
969 case ngx_http_script_file_not_dir: 971 case ngx_http_script_file_not_dir:
972 case ngx_http_script_file_not_exists:
970 case ngx_http_script_file_not_exec: 973 case ngx_http_script_file_not_exec:
971 goto true; 974 goto true;
972 } 975 }
973 976
974 goto false; 977 goto false;