comparison src/http/ngx_http_script.c @ 508:4b0d7f0bf22b NGINX_0_8_6

nginx 0.8.6 *) Feature: the ngx_http_geoip_module. *) Bugfix: XSLT filter may fail with message "not well formed XML document" for valid XML document. Thanks to Kuramoto Eiji. *) Bugfix: now in MacOSX, Cygwin, and nginx/Windows locations given by a regular expression are always tested in case insensitive mode; *) Bugfix: now nginx/Windows ignores trailing dots in URI. Thanks to Hugo Leisink. *) Bugfix: name of file specified in --conf-path was not honored during installation; the bug had appeared in 0.6.6. Thanks to Maxim Dounin.
author Igor Sysoev <http://sysoev.ru>
date Mon, 20 Jul 2009 00:00:00 +0400
parents f39b9e29530d
children 4c5d2c627a6c
comparison
equal deleted inserted replaced
507:0001f4fa0501 508:4b0d7f0bf22b
1072 e->ip = ngx_http_script_exit; 1072 e->ip = ngx_http_script_exit;
1073 e->status = NGX_HTTP_INTERNAL_SERVER_ERROR; 1073 e->status = NGX_HTTP_INTERNAL_SERVER_ERROR;
1074 return; 1074 return;
1075 } 1075 }
1076 1076
1077 if (ngx_http_set_exten(r) != NGX_OK) { 1077 ngx_http_set_exten(r);
1078 e->ip = ngx_http_script_exit;
1079 e->status = NGX_HTTP_INTERNAL_SERVER_ERROR;
1080 return;
1081 }
1082 } 1078 }
1083 1079
1084 e->ip += sizeof(ngx_http_script_regex_end_code_t); 1080 e->ip += sizeof(ngx_http_script_regex_end_code_t);
1085 } 1081 }
1086 1082