]> git.kaiwu.me - nginx.git/commitdiff
delete unused ngx_http_uwsgi_add_variables()
authorIgor Sysoev <igor@sysoev.ru>
Tue, 1 Jun 2010 20:21:56 +0000 (20:21 +0000)
committerIgor Sysoev <igor@sysoev.ru>
Tue, 1 Jun 2010 20:21:56 +0000 (20:21 +0000)
src/http/modules/ngx_http_uwsgi_module.c

index 8c760ba68b6858f150dd3bd901ee09801cc0cfb2..c45606eb73fa8f043af7391dc8a69d323719f74f 100644 (file)
@@ -52,7 +52,6 @@ static void ngx_http_uwsgi_abort_request(ngx_http_request_t *r);
 static void ngx_http_uwsgi_finalize_request(ngx_http_request_t *r,
     ngx_int_t rc);
 
-static ngx_int_t ngx_http_uwsgi_add_variables(ngx_conf_t *cf);
 static void *ngx_http_uwsgi_create_loc_conf(ngx_conf_t *cf);
 static char *ngx_http_uwsgi_merge_loc_conf(ngx_conf_t *cf, void *parent,
     void *child);
@@ -252,7 +251,7 @@ static ngx_command_t ngx_http_uwsgi_commands[] = {
 
 
 static ngx_http_module_t ngx_http_uwsgi_module_ctx = {
-    ngx_http_uwsgi_add_variables,          /* preconfiguration */
+    NULL,                                  /* preconfiguration */
     NULL,                                  /* postconfiguration */
 
     NULL,                                  /* create main configuration */
@@ -282,12 +281,6 @@ ngx_module_t ngx_http_uwsgi_module = {
 };
 
 
-static ngx_http_variable_t ngx_http_uwsgi_vars[] = {
-
-    { ngx_null_string, NULL, NULL, 0, 0, 0 }
-};
-
-
 static ngx_str_t ngx_http_uwsgi_hide_headers[] = {
     ngx_string("Status"),
     ngx_string("X-Accel-Expires"),
@@ -1063,25 +1056,6 @@ ngx_http_uwsgi_finalize_request(ngx_http_request_t *r, ngx_int_t rc)
 }
 
 
-static ngx_int_t
-ngx_http_uwsgi_add_variables(ngx_conf_t *cf)
-{
-    ngx_http_variable_t  *var, *v;
-
-    for (v = ngx_http_uwsgi_vars; v->name.len; v++) {
-        var = ngx_http_add_variable(cf, &v->name, v->flags);
-        if (var == NULL) {
-            return NGX_ERROR;
-        }
-
-        var->get_handler = v->get_handler;
-        var->data = v->data;
-    }
-
-    return NGX_OK;
-}
-
-
 static void *
 ngx_http_uwsgi_create_loc_conf(ngx_conf_t *cf)
 {