comparison src/http/ngx_http_script.c @ 328:390b8f8309d6 NGINX_0_6_8

nginx 0.6.8 *) Change: now nginx tries to set the "worker_priority", "worker_rlimit_nofile", "worker_rlimit_core", and "worker_rlimit_sigpending" without super-user privileges. *) Change: now nginx escapes space and "%" in request to a mail proxy authentication server. *) Change: now nginx escapes "%" in $memcached_key variable. *) Bugfix: nginx used path relative to configuration prefix for non-absolute configuration file path specified in the "-c" key; bug appeared in 0.6.6. *) Bugfix: nginx did not work on FreeBSD/sparc64.
author Igor Sysoev <http://sysoev.ru>
date Mon, 20 Aug 2007 00:00:00 +0400
parents 27d9d1f26b38
children 3a91bfeffaba
comparison
equal deleted inserted replaced
327:be18d26e067c 328:390b8f8309d6
1189 1189
1190 value = ngx_http_get_flushed_variable(e->request, code->index); 1190 value = ngx_http_get_flushed_variable(e->request, code->index);
1191 1191
1192 if (value && !value->not_found) { 1192 if (value && !value->not_found) {
1193 ngx_log_debug1(NGX_LOG_DEBUG_HTTP, e->request->connection->log, 0, 1193 ngx_log_debug1(NGX_LOG_DEBUG_HTTP, e->request->connection->log, 0,
1194 "http script var: \"%V\"", value); 1194 "http script var: \"%v\"", value);
1195 1195
1196 *e->sp = *value; 1196 *e->sp = *value;
1197 e->sp++; 1197 e->sp++;
1198 1198
1199 return; 1199 return;