comparison src/http/ngx_http_core_module.c @ 6:80ba094c6b3e NGINX_0_1_3

nginx 0.1.3 *) Feature: the ngx_http_autoindex_module and the autoindex directive. *) Feature: the proxy_set_x_url directive. *) Bugfix: proxy module may get caught in an endless loop when sendfile is not used.
author Igor Sysoev <http://sysoev.ru>
date Mon, 25 Oct 2004 00:00:00 +0400
parents 4b2dafa26fe2
children 46833bd150cb
comparison
equal deleted inserted replaced
5:985c56ebe724 6:80ba094c6b3e
1010 if (rc == 0 && second->exact_match) { 1010 if (rc == 0 && second->exact_match) {
1011 /* an exact match must be before the same inclusive one */ 1011 /* an exact match must be before the same inclusive one */
1012 return 1; 1012 return 1;
1013 } 1013 }
1014 1014
1015 return rc; 1015 return (int) rc;
1016 } 1016 }
1017 1017
1018 1018
1019 static char *ngx_location_block(ngx_conf_t *cf, ngx_command_t *cmd, void *dummy) 1019 static char *ngx_location_block(ngx_conf_t *cf, ngx_command_t *cmd, void *dummy)
1020 { 1020 {