fix a geo range if the range includes two or more /16 networks

and does not begin at /16 network boundary
This commit is contained in:
Igor Sysoev 2010-02-25 17:26:01 +00:00
parent f83b903fb2
commit 3f90fb5e80
1 changed files with 1 additions and 1 deletions

View File

@ -589,7 +589,7 @@ ngx_http_geo_add_range(ngx_conf_t *cf, ngx_http_geo_conf_ctx_t *ctx,
ngx_array_t *a;
ngx_http_geo_range_t *range;
for (n = start; n <= end; n += 0x10000) {
for (n = start; n <= end; n = (n + 0x10000) & 0xffff0000) {
h = n >> 16;