summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2008-12-02 15:02:36 +0000
committerIgor Sysoev <igor@sysoev.ru>2008-12-02 15:02:36 +0000
commit84b7651ac25eb02d4694e8f2757fde5b6a3988c7 (patch)
treef3786da837a954e76478e688293224af901f67c8
parent14ecd8ab01fa9037fdcf18946d2a7814227d519f (diff)
downloadnginx-84b7651ac25eb02d4694e8f2757fde5b6a3988c7.tar.gz
fix "delete CIDR"
-rw-r--r--src/http/modules/ngx_http_geo_module.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/http/modules/ngx_http_geo_module.c b/src/http/modules/ngx_http_geo_module.c
index bba399f6c..4c2b679e2 100644
--- a/src/http/modules/ngx_http_geo_module.c
+++ b/src/http/modules/ngx_http_geo_module.c
@@ -666,8 +666,9 @@ ngx_http_geo_cidr(ngx_conf_t *cf, ngx_http_geo_conf_ctx_t *ctx,
{
ngx_conf_log_error(NGX_LOG_WARN, cf, 0,
"no network \"%V\" to delete", net);
- return NGX_CONF_OK;
}
+
+ return NGX_CONF_OK;
}
}