]> git.kaiwu.me - nginx.git/commitdiff
rename ngx_http_scrip_flush_complex_value()
authorIgor Sysoev <igor@sysoev.ru>
Fri, 27 Mar 2009 14:59:47 +0000 (14:59 +0000)
committerIgor Sysoev <igor@sysoev.ru>
Fri, 27 Mar 2009 14:59:47 +0000 (14:59 +0000)
    to ngx_http_script_flush_complex_value()

src/http/ngx_http_script.c
src/http/ngx_http_script.h

index b640826e78b06d371fa83ab58e27680dcd895e49..9e09f2d13ce24f326a9cc99694a978ece2e7a50b 100644 (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));
 
index 7f36ce54750019e94686d26515a8a3eee8e629aa..d5a50b915deb9e3afa4fc905e505847b643d0970 100644 (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);