fix r3981 again for case "Accept-Encoding: gzip"
Igor Sysoev
10 years ago
1 changed file(s) with
1 addition(s)
and
1 deletion(s)
.
Raw diff
Collapse all
Expand all
+1
-1
src/http/ngx_http_core_module.c
less
more
2208
2208
return NGX_DECLINED;
2209
2209
}
2210
2210
2211
if (p > start && (*(p - 1) == ',' || *(p - 1) == ' ')) {
2211
if (p == start || (*(p - 1) == ',' || *(p - 1) == ' ')) {
2212
2212
break;
2213
2213
}
2214
2214