summaryrefslogtreecommitdiffhomepage
path: root/src/http/ngx_http_script.c
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2007-09-22 19:18:36 +0000
committerIgor Sysoev <igor@sysoev.ru>2007-09-22 19:18:36 +0000
commit1f1bdc12b3aa1af224909ef8585a77c86d9d1ac5 (patch)
tree3607bd1257ed28fde6b99c60f36da330643df1bd /src/http/ngx_http_script.c
parent65567a0c47415880af1099207ccdf619eda33e19 (diff)
downloadnginx-1f1bdc12b3aa1af224909ef8585a77c86d9d1ac5.tar.gz
nginx-1f1bdc12b3aa1af224909ef8585a77c86d9d1ac5.tar.bz2
r1407 merge:
use %v for ngx_variable_value_t in ngx_sprintf(), this fixes nginx on FreeBSD/sparc64
Diffstat (limited to '')
-rw-r--r--src/http/ngx_http_script.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/ngx_http_script.c b/src/http/ngx_http_script.c
index 63959498b..945602178 100644
--- a/src/http/ngx_http_script.c
+++ b/src/http/ngx_http_script.c
@@ -1191,7 +1191,7 @@ ngx_http_script_var_code(ngx_http_script_engine_t *e)
if (value && !value->not_found) {
ngx_log_debug1(NGX_LOG_DEBUG_HTTP, e->request->connection->log, 0,
- "http script var: \"%V\"", value);
+ "http script var: \"%v\"", value);
*e->sp = *value;
e->sp++;