comparison src/core/ngx_cycle.c @ 692:6db6e93f55ee NGINX_1_3_9

nginx 1.3.9 *) Feature: support for chunked transfer encoding while reading client request body. *) Feature: the $request_time and $msec variables can now be used not only in the "log_format" directive. *) Bugfix: cache manager and cache loader processes might not be able to start if more than 512 listen sockets were used. *) Bugfix: in the ngx_http_dav_module.
author Igor Sysoev <http://sysoev.ru>
date Tue, 27 Nov 2012 00:00:00 +0400
parents f31b19fe7f48
children 88a1b4797f2e
comparison
equal deleted inserted replaced
691:acfd484db0ca 692:6db6e93f55ee
445 != 0) 445 != 0)
446 { 446 {
447 continue; 447 continue;
448 } 448 }
449 449
450 if (shm_zone[i].shm.size == oshm_zone[n].shm.size) { 450 if (shm_zone[i].tag == oshm_zone[n].tag
451 && shm_zone[i].shm.size == oshm_zone[n].shm.size)
452 {
451 shm_zone[i].shm.addr = oshm_zone[n].shm.addr; 453 shm_zone[i].shm.addr = oshm_zone[n].shm.addr;
452 454
453 if (shm_zone[i].init(&shm_zone[i], oshm_zone[n].data) 455 if (shm_zone[i].init(&shm_zone[i], oshm_zone[n].data)
454 != NGX_OK) 456 != NGX_OK)
455 { 457 {