comparison src/http/ngx_http_script.c @ 671:cec32b3753ac release-0.3.57

nginx-0.3.57-RELEASE import *) 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 <igor@sysoev.ru>
date Wed, 09 Aug 2006 19:59:45 +0000
parents 562806624c4a
children b80f94fa2197
comparison
equal deleted inserted replaced
670:ba43c68592d0 671:cec32b3753ac
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;