diff src/http/ngx_http_script.c @ 256:2e9c57a5e50a NGINX_0_4_13

nginx 0.4.13 *) Feature: the "proxy_pass" directive may be used inside the "limit_except" block. *) Feature: the "limit_except" directive supports all WebDAV methods. *) Bugfix: if the "add_before_body" directive was used without the "add_after_body" directive, then an response did not transferred complete. *) Bugfix: a large request body did not receive if the epoll method and the deferred accept() were used. *) Bugfix: a charset could not be set for ngx_http_autoindex_module responses; bug appeared in 0.3.50. *) Bugfix: the "[alert] zero size buf" error when FastCGI server was used; *) Bugfix: the --group= configuration parameter was ignored. Thanks to Thomas Moschny. *) Bugfix: the 50th subrequest in SSI response did not work; bug appeared in 0.3.50.
author Igor Sysoev <http://sysoev.ru>
date Wed, 15 Nov 2006 00:00:00 +0300
parents a528ae0fe909
children 27d9d1f26b38
line wrap: on
line diff
--- a/src/http/ngx_http_script.c
+++ b/src/http/ngx_http_script.c
@@ -423,10 +423,8 @@ ngx_http_script_copy_code(ngx_http_scrip
     e->ip += sizeof(ngx_http_script_copy_code_t)
           + ((code->len + sizeof(uintptr_t) - 1) & ~(sizeof(uintptr_t) - 1));
 
-    if (e->log) {
-        ngx_log_debug1(NGX_LOG_DEBUG_HTTP, e->request->connection->log, 0,
-                       "http script copy: \"%V\"", &e->buf);
-    }
+    ngx_log_debug1(NGX_LOG_DEBUG_HTTP, e->request->connection->log, 0,
+                   "http script copy: \"%V\"", &e->buf);
 }
 
 
@@ -477,11 +475,9 @@ ngx_http_script_copy_var_code(ngx_http_s
         if (value && !value->not_found) {
             e->pos = ngx_copy(e->pos, value->data, value->len);
 
-            if (e->log) {
-                ngx_log_debug1(NGX_LOG_DEBUG_HTTP,
-                               e->request->connection->log, 0,
-                               "http script var: \"%V\"", &e->buf);
-            }
+            ngx_log_debug1(NGX_LOG_DEBUG_HTTP,
+                           e->request->connection->log, 0,
+                           "http script var: \"%V\"", &e->buf);
         }
     }
 }