comparison src/http/ngx_http.c @ 3116:98e288c6dac3

If .domain.com, .sub.domain.com, and .domain-some.com were defined, then .sub.domain.com was matched by .domain.com: wildcard names hash was built incorrectly due to sorting order issue of "." vs "-". They were sorted as com.domain com.domain-some com.domain.sub while they should be sorted as com.domain com.domain.sub com.domain-some for correct hash building
author Igor Sysoev <igor@sysoev.ru>
date Sat, 12 Sep 2009 09:28:37 +0000
parents dfe04af9d30b
children a22bf524a456 935c5eb13c7d
comparison
equal deleted inserted replaced
3115:204ea173234f 3116:98e288c6dac3
1599 ngx_hash_key_t *first, *second; 1599 ngx_hash_key_t *first, *second;
1600 1600
1601 first = (ngx_hash_key_t *) one; 1601 first = (ngx_hash_key_t *) one;
1602 second = (ngx_hash_key_t *) two; 1602 second = (ngx_hash_key_t *) two;
1603 1603
1604 return ngx_strcmp(first->key.data, second->key.data); 1604 return ngx_dns_strcmp(first->key.data, second->key.data);
1605 } 1605 }
1606 1606
1607 1607
1608 static ngx_int_t 1608 static ngx_int_t
1609 ngx_http_init_listening(ngx_conf_t *cf, ngx_http_conf_port_t *port) 1609 ngx_http_init_listening(ngx_conf_t *cf, ngx_http_conf_port_t *port)