comparison src/http/modules/ngx_http_map_module.c @ 1406:03341711f9a2

use %v for ngx_variable_value_t in ngx_sprintf(), this fixes nginx on FreeBSD/sparc64
author Igor Sysoev <igor@sysoev.ru>
date Mon, 20 Aug 2007 09:57:19 +0000
parents e958b3cab51a
children 4c43e25d11ea
comparison
equal deleted inserted replaced
1405:fdd064faf26a 1406:03341711f9a2
149 } else { 149 } else {
150 *v = *map->default_value; 150 *v = *map->default_value;
151 } 151 }
152 152
153 ngx_log_debug2(NGX_LOG_DEBUG_HTTP, r->connection->log, 0, 153 ngx_log_debug2(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
154 "http map: \"%V\" \"%V\"", vv, v); 154 "http map: \"%v\" \"%v\"", vv, v);
155 155
156 return NGX_OK; 156 return NGX_OK;
157 } 157 }
158 158
159 159