changeset 2609:ad99a49cd313

rename ngx_http_scrip_flush_complex_value() to ngx_http_script_flush_complex_value()
author Igor Sysoev <igor@sysoev.ru>
date Fri, 27 Mar 2009 14:59:47 +0000
parents 2f4a3a4dfd34
children 3a9b22405138
files src/http/ngx_http_script.c src/http/ngx_http_script.h
diffstat 2 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/src/http/ngx_http_script.c
+++ b/src/http/ngx_http_script.c
@@ -32,7 +32,7 @@ static uintptr_t ngx_http_script_exit_co
 
 
 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_
         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));
 
--- a/src/http/ngx_http_script.h
+++ b/src/http/ngx_http_script.h
@@ -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);