comparison src/http/modules/ngx_http_map_module.c @ 582:c456a023113c NGINX_0_8_43

nginx 0.8.43 *) Feature: large geo ranges base loading speed-up. *) Bugfix: an error_page redirection to "location /zero { return 204; }" without changing status code kept the error body; the bug had appeared in 0.8.42. *) Bugfix: nginx might close IPv6 listen socket during reconfiguration. Thanks to Maxim Dounin. *) Bugfix: the $uid_set variable may be used at any request processing stage.
author Igor Sysoev <http://sysoev.ru>
date Wed, 30 Jun 2010 00:00:00 +0400
parents 0161f3197817
children
comparison
equal deleted inserted replaced
581:22b2345b75d9 582:c456a023113c
372 } 372 }
373 373
374 if (ngx_strcmp(value[0].data, "include") == 0) { 374 if (ngx_strcmp(value[0].data, "include") == 0) {
375 file = value[1]; 375 file = value[1];
376 376
377 if (ngx_conf_full_name(cf->cycle, &file, 1) != NGX_OK){ 377 if (ngx_conf_full_name(cf->cycle, &file, 1) != NGX_OK) {
378 return NGX_CONF_ERROR; 378 return NGX_CONF_ERROR;
379 } 379 }
380 380
381 ngx_log_debug1(NGX_LOG_DEBUG_CORE, cf->log, 0, "include %s", file.data); 381 ngx_log_debug1(NGX_LOG_DEBUG_CORE, cf->log, 0, "include %s", file.data);
382 382