From 0d4b372e44743db22e72642fa2fe56a488ce3ed6 Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Mon, 20 Aug 2007 09:57:19 +0000 Subject: use %v for ngx_variable_value_t in ngx_sprintf(), this fixes nginx on FreeBSD/sparc64 --- src/http/ngx_http_script.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/http/ngx_http_script.c') 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++; -- cgit