#182 closed defect (fixed)
map with hostnames does not drop terminating dot
Reported by: | www.google.com/accounts/o8/id?id=AItOawnQxODTko53PmY0va90aNN76a_jMUVqVco | Owned by: | somebody |
---|---|---|---|
Priority: | minor | Milestone: | 1.3 |
Component: | nginx-module | Version: | 1.3.x |
Keywords: | map hostnames | Cc: | |
uname -a: | not important | ||
nginx -V: | at least 1.2.1 and CURRENT |
Description
In ngx_http_map_variable function of ngx_http_map_module.c there are lines:
124 len = val.len;
125
126 if (len && map->hostnames && val.data[len - 1] == '.') {
127 len--;
128 }
129
130 value = ngx_http_map_find(r, &map->map, &val);
But 'len' is not used after that, so terminating dot cannot be ignored for map with hostnames as it should.
Note:
See TracTickets
for help on using tickets.
Thank you for report. Actually, the code is dead since introduction in 0.3.16, due to map->hostnames being always set to 0.