comparison src/http/ngx_http_request.c @ 472:09f0ef15d544 NGINX_0_7_48

nginx 0.7.48 *) Feature: the "proxy_cache_key" directive. *) Bugfix: now nginx takes into account the "X-Accel-Expires", "Expires", and "Cache-Control" header lines in a backend response. *) Bugfix: now nginx caches responses for the GET requests only. *) Bugfix: the "fastcgi_cache_key" directive was not inherited. *) Bugfix: the $arg_... variables did not work with SSI subrequests. Thanks to Maxim Dounin. *) Bugfix: nginx could not be built with uclibc library. Thanks to Timothy Redaelli. *) Bugfix: nginx could not be built on OpenBSD; the bug had appeared in 0.7.46.
author Igor Sysoev <http://sysoev.ru>
date Mon, 06 Apr 2009 00:00:00 +0400
parents dcb6b5f9d526
children f2c6a7373274
comparison
equal deleted inserted replaced
471:0cc33540f2e0 472:09f0ef15d544
695 695
696 /* the request line has been parsed successfully */ 696 /* the request line has been parsed successfully */
697 697
698 r->request_line.len = r->request_end - r->request_start; 698 r->request_line.len = r->request_end - r->request_start;
699 r->request_line.data = r->request_start; 699 r->request_line.data = r->request_start;
700 *r->request_end = '\0';
701 700
702 701
703 if (r->args_start) { 702 if (r->args_start) {
704 r->uri.len = r->args_start - 1 - r->uri_start; 703 r->uri.len = r->args_start - 1 - r->uri_start;
705 } else { 704 } else {