comparison src/http/ngx_http_request.c @ 270:6eb1e38f0f1f NGINX_0_5_5

nginx 0.5.5 *) Change: the -v switch does not show compiler information any more. *) Feature: the -V switch. *) Feature: the "worker_rlimit_core" directive supports size in K, M, and G. *) Bugfix: the nginx.pm module now could be installed by an unprivileged user. *) Bugfix: a segmentation fault might occur if the $r->request_body or $r->request_body_file methods were used. *) Bugfix: the ppc platform specific bugs.
author Igor Sysoev <http://sysoev.ru>
date Sun, 24 Dec 2006 00:00:00 +0300
parents e0b1d0a6c629
children 29a6403156b0
comparison
equal deleted inserted replaced
269:aa9c0062124d 270:6eb1e38f0f1f
1102 r->schema_end = new + (r->schema_end - old); 1102 r->schema_end = new + (r->schema_end - old);
1103 } 1103 }
1104 1104
1105 if (r->host_start) { 1105 if (r->host_start) {
1106 r->host_start = new + (r->host_start - old); 1106 r->host_start = new + (r->host_start - old);
1107 r->host_end = new + (r->host_end - old); 1107 if (r->host_end) {
1108 r->host_end = new + (r->host_end - old);
1109 }
1108 } 1110 }
1109 1111
1110 if (r->port_start) { 1112 if (r->port_start) {
1111 r->port_start = new + (r->port_start - old); 1113 r->port_start = new + (r->port_start - old);
1112 r->port_end = new + (r->port_end - old); 1114 r->port_end = new + (r->port_end - old);