diff options
| author | Igor Sysoev <igor@sysoev.ru> | 2010-06-07 10:14:11 +0000 |
|---|---|---|
| committer | Igor Sysoev <igor@sysoev.ru> | 2010-06-07 10:14:11 +0000 |
| commit | 98e044cd86c9b4c6c4eaa0ca8008832d1dcc9726 (patch) | |
| tree | a76320fb92fe38ce94813f06e2c10430171c43db /src/http/ngx_http_request.c | |
| parent | 49ab49ec551a103829680fce7f3e19a363c7a590 (diff) | |
| download | nginx-98e044cd86c9b4c6c4eaa0ca8008832d1dcc9726.tar.gz nginx-98e044cd86c9b4c6c4eaa0ca8008832d1dcc9726.tar.bz2 | |
merge r3459, r3571:
Win32 fixes:
*) compare long file names in case-insensitive mode,
the bug had been introduced in r3436
*) test default NTFS stream "::$DATA"
Diffstat (limited to 'src/http/ngx_http_request.c')
| -rw-r--r-- | src/http/ngx_http_request.c | 23 |
1 files changed, 19 insertions, 4 deletions
diff --git a/src/http/ngx_http_request.c b/src/http/ngx_http_request.c index c32f4c6b1..5710c699f 100644 --- a/src/http/ngx_http_request.c +++ b/src/http/ngx_http_request.c @@ -784,16 +784,31 @@ ngx_http_process_request_line(ngx_event_t *rev) p = r->uri.data + r->uri.len - 1; - if (*p == '.' || *p == ' ') { + while (p > r->uri.data) { - while (--p > r->uri.data && (*p == '.' || *p == ' ')) { - /* void */ + if (*p == ' ') { + p--; + continue; } - r->uri.len = p + 1 - r->uri.data; + if (*p == '.') { + p--; + continue; + } + if (ngx_strncasecmp(p - 6, (u_char *) "::$data", 7) == 0) { + p -= 7; + continue; + } + + break; + } + + if (p != r->uri.data + r->uri.len - 1) { + r->uri.len = p + 1 - r->uri.data; ngx_http_set_exten(r); } + } #endif |
