diff options
author | Igor Sysoev <igor@sysoev.ru> | 2007-10-09 18:44:59 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2007-10-09 18:44:59 +0000 |
commit | 5ba67396f5acc93691a1892dcc28a7751f59703d (patch) | |
tree | 8b7c116062fead57e2c95330e40f385aff85ba4d /src/http/ngx_http_script.c | |
parent | d3db9ea51e0fd7adffd81fb1bd8229152a2ed4b5 (diff) | |
download | nginx-5ba67396f5acc93691a1892dcc28a7751f59703d.tar.gz nginx-5ba67396f5acc93691a1892dcc28a7751f59703d.zip |
%v fix lost in r1407
Diffstat (limited to 'src/http/ngx_http_script.c')
-rw-r--r-- | src/http/ngx_http_script.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/ngx_http_script.c b/src/http/ngx_http_script.c index b19ee91dc..c6f0429cc 100644 --- a/src/http/ngx_http_script.c +++ b/src/http/ngx_http_script.c @@ -1127,7 +1127,7 @@ ngx_http_script_value_code(ngx_http_script_engine_t *e) e->sp->data = (u_char *) code->text_data; ngx_log_debug1(NGX_LOG_DEBUG_HTTP, e->request->connection->log, 0, - "http script value: \"%V\"", e->sp); + "http script value: \"%v\"", e->sp); e->sp++; } |