rename ngx_http_scrip_flush_complex_value()

to ngx_http_script_flush_complex_value()
This commit is contained in:
Igor Sysoev 2009-03-27 14:59:47 +00:00
parent 22d381e87c
commit 766f3a9753
2 changed files with 3 additions and 3 deletions

View File

@ -32,7 +32,7 @@ static uintptr_t ngx_http_script_exit_code = (uintptr_t) NULL;
void
ngx_http_scrip_flush_complex_value(ngx_http_request_t *r,
ngx_http_script_flush_complex_value(ngx_http_request_t *r,
ngx_http_complex_value_t *val)
{
ngx_uint_t *index;
@ -67,7 +67,7 @@ ngx_http_complex_value(ngx_http_request_t *r, ngx_http_complex_value_t *val,
return NGX_OK;
}
ngx_http_scrip_flush_complex_value(r, val);
ngx_http_script_flush_complex_value(r, val);
ngx_memzero(&e, sizeof(ngx_http_script_engine_t));

View File

@ -203,7 +203,7 @@ typedef struct {
} ngx_http_script_value_code_t;
void ngx_http_scrip_flush_complex_value(ngx_http_request_t *r,
void ngx_http_script_flush_complex_value(ngx_http_request_t *r,
ngx_http_complex_value_t *val);
ngx_int_t ngx_http_complex_value(ngx_http_request_t *r,
ngx_http_complex_value_t *val, ngx_str_t *value);