summaryrefslogtreecommitdiffhomepage
path: root/src/http/modules/ngx_http_uwsgi_module.c
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2010-06-01 20:21:56 +0000
committerIgor Sysoev <igor@sysoev.ru>2010-06-01 20:21:56 +0000
commit4ddb52551c9dc510e947a074ff69224db0141620 (patch)
tree4284157f104b5280b915af7012023443add8a627 /src/http/modules/ngx_http_uwsgi_module.c
parentc1f3d6edb77087885c1f139ba640b41e270e93c9 (diff)
downloadnginx-4ddb52551c9dc510e947a074ff69224db0141620.tar.gz
nginx-4ddb52551c9dc510e947a074ff69224db0141620.tar.bz2
delete unused ngx_http_uwsgi_add_variables()
Diffstat (limited to 'src/http/modules/ngx_http_uwsgi_module.c')
-rw-r--r--src/http/modules/ngx_http_uwsgi_module.c28
1 files changed, 1 insertions, 27 deletions
diff --git a/src/http/modules/ngx_http_uwsgi_module.c b/src/http/modules/ngx_http_uwsgi_module.c
index 8c760ba68..c45606eb7 100644
--- a/src/http/modules/ngx_http_uwsgi_module.c
+++ b/src/http/modules/ngx_http_uwsgi_module.c
@@ -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)
{