summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2006-03-11 06:38:31 +0000
committerJonathan Kolb <jon@b0g.us>2006-03-11 06:38:31 +0000
commite39524cab63b343b84b5389e7f66241cfd7b8c29 (patch)
tree8334d43e40463ee81b9548f88493f587ba8eb6d6
parent2901f80d57a43c36ae626dff943860fe6b24231a (diff)
downloadnginx-e39524cab63b343b84b5389e7f66241cfd7b8c29.tar.gz
Changes with nginx 0.3.32 11 Mar 2006v0.3.32
*) Bugfix: the debug logging on startup and reconfiguration time was removed; bug appeared in 0.3.31.
-rw-r--r--CHANGES6
-rw-r--r--CHANGES.ru6
-rw-r--r--src/core/nginx.h2
-rw-r--r--src/http/ngx_http.c6
4 files changed, 13 insertions, 7 deletions
diff --git a/CHANGES b/CHANGES
index 0ffe2e13c..6f78ba0c2 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,4 +1,10 @@
+Changes with nginx 0.3.32 11 Mar 2006
+
+ *) Bugfix: the debug logging on startup and reconfiguration time was
+ removed; bug appeared in 0.3.31.
+
+
Changes with nginx 0.3.31 10 Mar 2006
*) Change: now nginx passes the malformed proxied backend responses.
diff --git a/CHANGES.ru b/CHANGES.ru
index 60e3e483a..e6a5a4867 100644
--- a/CHANGES.ru
+++ b/CHANGES.ru
@@ -1,4 +1,10 @@
+Изменения в nginx 0.3.32 11.03.2006
+
+ *) Исправление: удаление отладочного логгирования на старте и при
+ переконфигурации; ошибка появилась в 0.3.31.
+
+
Изменения в nginx 0.3.31 10.03.2006
*) Изменение: теперь nginx передаёт неверные ответы проксированного
diff --git a/src/core/nginx.h b/src/core/nginx.h
index e8f60848e..86959ad6a 100644
--- a/src/core/nginx.h
+++ b/src/core/nginx.h
@@ -8,7 +8,7 @@
#define _NGINX_H_INCLUDED_
-#define NGINX_VER "nginx/0.3.31"
+#define NGINX_VER "nginx/0.3.32"
#define NGINX_VAR "NGINX"
#define NGX_OLDPID_EXT ".oldbin"
diff --git a/src/http/ngx_http.c b/src/http/ngx_http.c
index fb5dcb754..b50d580c5 100644
--- a/src/http/ngx_http.c
+++ b/src/http/ngx_http.c
@@ -580,9 +580,6 @@ ngx_http_block(ngx_conf_t *cf, ngx_command_t *cmd, void *conf)
name = in_addr[a].names.elts;
for (s = 0; s < in_addr[a].names.nelts; s++) {
- ngx_log_error(NGX_LOG_ALERT, cf->log, 0,
- "server name \"%V\"", &name[s].name);
-
ch = name[s].name.data[0];
if (ch == '*' || ch == '.') {
@@ -605,9 +602,6 @@ ngx_http_block(ngx_conf_t *cf, ngx_command_t *cmd, void *conf)
for (s = 0; s < in_addr[a].names.nelts; s++) {
- ngx_log_error(NGX_LOG_ALERT, cf->log, 0,
- "wildcard server name \"%V\"", &name[s].name);
-
ch = name[s].name.data[0];
if (ch != '*' && ch != '.') {