# HG changeset patch # User Igor Sysoev # Date 1128024000 -14400 # Node ID 8bf57caa374ac14825301d8ace2d8a084e47f17e # Parent 701eee3df18fcc9a51870c557d69278e0cf26138 nginx 0.2.3 *) Bugfix: nginx could not be built without the --with-debug option; bug appeared in 0.2.2. diff --git a/CHANGES b/CHANGES --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,9 @@ + +Changes with nginx 0.2.3 30 Sep 2005 + + *) Bugfix: nginx could not be built without the --with-debug option; + bug appeared in 0.2.2. + Changes with nginx 0.2.2 30 Sep 2005 diff --git a/CHANGES.ru b/CHANGES.ru --- a/CHANGES.ru +++ b/CHANGES.ru @@ -1,3 +1,9 @@ + +Изменения в nginx 0.2.3 30.09.2005 + + *) Исправление: nginx не собирался без параметра --with-debug; ошибка + появилась в 0.2.2. + Изменения в nginx 0.2.2 30.09.2005 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) {