comparison src/http/ngx_http_script.c @ 517:dadfa78d2270 release-0.1.33

nginx-0.1.33-RELEASE import *) Bugfix: nginx could not be built with the --without-pcre parameter; the bug had appeared in 0.1.29. *) Bugfix: 3, 4, 7, and 8 the "proxy_set_header" directives in one level cause the bus fault on start up. *) Bugfix: the HTTP protocol was specified in the HTTPS redirects. *) Bugfix: if the "rewrite" directive used the captures inside the "if" directive, then the 500 error code was returned.
author Igor Sysoev <igor@sysoev.ru>
date Mon, 23 May 2005 12:07:45 +0000
parents 417a087c9c4d
children 7fa11e5c6e96
comparison
equal deleted inserted replaced
516:ea9642a65514 517:dadfa78d2270
461 e->args = e->pos; 461 e->args = e->pos;
462 e->ip += sizeof(uintptr_t); 462 e->ip += sizeof(uintptr_t);
463 } 463 }
464 464
465 465
466
467 #if (NGX_PCRE)
468
466 void 469 void
467 ngx_http_script_regex_start_code(ngx_http_script_engine_t *e) 470 ngx_http_script_regex_start_code(ngx_http_script_engine_t *e)
468 { 471 {
469 size_t len; 472 size_t len;
470 ngx_int_t rc; 473 ngx_int_t rc;
691 } 694 }
692 695
693 e->ip += sizeof(ngx_http_script_regex_end_code_t); 696 e->ip += sizeof(ngx_http_script_regex_end_code_t);
694 } 697 }
695 698
699 #endif
700
696 701
697 void 702 void
698 ngx_http_script_return_code(ngx_http_script_engine_t *e) 703 ngx_http_script_return_code(ngx_http_script_engine_t *e)
699 { 704 {
700 ngx_http_script_return_code_t *code; 705 ngx_http_script_return_code_t *code;