# HG changeset patch # User Igor Sysoev # Date 1128096154 0 # Node ID e16a8d574da511622b97d6237d005f40f2cddb30 # Parent 694d9706e317f2b87e1fa9e096684c30441aae92 nginx-0.2.3-RELEASE import *) Bugfix: nginx could not be built without the --with-debug option; the bug had appeared in 0.2.2. diff --git a/docs/xml/nginx/changes.xml b/docs/xml/nginx/changes.xml --- a/docs/xml/nginx/changes.xml +++ b/docs/xml/nginx/changes.xml @@ -9,6 +9,22 @@ nginx changelog + + + + +nginx не собирался без параметра --with-debug; +ошибка появилась в 0.2.2. + + +nginx could not be built without the --with-debug option; +bug appeared in 0.2.2. + + + + + + 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_VER "nginx/0.2.2" +#define NGINX_VER "nginx/0.2.3" #define NGINX_VAR "NGINX" #define NGX_OLDPID_EXT ".oldbin" diff --git a/src/event/ngx_event_openssl.c b/src/event/ngx_event_openssl.c --- a/src/event/ngx_event_openssl.c +++ b/src/event/ngx_event_openssl.c @@ -320,7 +320,7 @@ ngx_ssl_handshake_handler(ngx_event_t *e c = ev->data; - ngx_log_debug0(NGX_LOG_DEBUG_EVENT, c->log, 0, + ngx_log_debug1(NGX_LOG_DEBUG_EVENT, c->log, 0, "ssl handshake handler: %d", ev->write); if (ngx_ssl_handshake(c) == NGX_AGAIN) {