comparison src/http/ngx_http_script.c @ 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 09cab3f8d92e
comparison
equal deleted inserted replaced
2608:2f4a3a4dfd34 2609:ad99a49cd313
30 30
31 static uintptr_t ngx_http_script_exit_code = (uintptr_t) NULL; 31 static uintptr_t ngx_http_script_exit_code = (uintptr_t) NULL;
32 32
33 33
34 void 34 void
35 ngx_http_scrip_flush_complex_value(ngx_http_request_t *r, 35 ngx_http_script_flush_complex_value(ngx_http_request_t *r,
36 ngx_http_complex_value_t *val) 36 ngx_http_complex_value_t *val)
37 { 37 {
38 ngx_uint_t *index; 38 ngx_uint_t *index;
39 39
40 index = val->flushes; 40 index = val->flushes;
65 if (val->lengths == NULL) { 65 if (val->lengths == NULL) {
66 *value = val->value; 66 *value = val->value;
67 return NGX_OK; 67 return NGX_OK;
68 } 68 }
69 69
70 ngx_http_scrip_flush_complex_value(r, val); 70 ngx_http_script_flush_complex_value(r, val);
71 71
72 ngx_memzero(&e, sizeof(ngx_http_script_engine_t)); 72 ngx_memzero(&e, sizeof(ngx_http_script_engine_t));
73 73
74 e.ip = val->lengths; 74 e.ip = val->lengths;
75 e.request = r; 75 e.request = r;