# HG changeset patch # User Igor Sysoev # Date 1182024000 -14400 # Node ID d810822b7425f6499294a8c086db51fc22f88231 # Parent fcb663e926638ddc127d74ea5d5db0bf76ac1cee nginx 0.5.26 *) Bugfix: in SSI parsing. diff --git a/CHANGES b/CHANGES --- a/CHANGES +++ b/CHANGES @@ -1,4 +1,9 @@ +Changes with nginx 0.5.26 17 Jun 2007 + + *) Bugfix: in SSI parsing. + + Changes with nginx 0.5.25 11 Jun 2007 *) Bugfix: nginx could not be built with the diff --git a/CHANGES.ru b/CHANGES.ru --- a/CHANGES.ru +++ b/CHANGES.ru @@ -1,4 +1,9 @@ +Изменения в nginx 0.5.26 17.06.2007 + + *) Исправление: в парсинге SSI. + + Изменения в nginx 0.5.25 11.06.2007 *) Исправление: nginx не собирался с параметром diff --git a/src/core/nginx.h b/src/core/nginx.h --- a/src/core/nginx.h +++ b/src/core/nginx.h @@ -8,7 +8,7 @@ #define _NGINX_H_INCLUDED_ -#define NGINX_VERSION "0.5.25" +#define NGINX_VERSION "0.5.26" #define NGINX_VER "nginx/" NGINX_VERSION #define NGINX_VAR "NGINX" diff --git a/src/http/modules/ngx_http_ssi_filter_module.c b/src/http/modules/ngx_http_ssi_filter_module.c --- a/src/http/modules/ngx_http_ssi_filter_module.c +++ b/src/http/modules/ngx_http_ssi_filter_module.c @@ -1020,6 +1020,7 @@ ngx_http_ssi_parse(ngx_http_request_t *r ch = *p; } + ctx->state = state; ctx->pos = p; ctx->looked = looked; ctx->copy_end = p; diff --git a/src/http/modules/perl/nginx.pm b/src/http/modules/perl/nginx.pm --- a/src/http/modules/perl/nginx.pm +++ b/src/http/modules/perl/nginx.pm @@ -47,7 +47,7 @@ our @EXPORT = qw( HTTP_INSUFFICIENT_STORAGE ); -our $VERSION = '0.5.25'; +our $VERSION = '0.5.26'; require XSLoader; XSLoader::load('nginx', $VERSION);