move listen log copying from ngx_open_listening_sockets()

to ngx_configure_listening_sockets(), otherwise listen socket logs have no file
after first reload and this caused segfault if debug_connection was used;
the bug has been introduced in r2786
This commit is contained in:
Igor Sysoev 2009-05-05 13:16:29 +00:00
parent 00bd137064
commit d4a71fb844

View File

@ -202,8 +202,6 @@ ngx_open_listening_sockets(ngx_cycle_t *cycle)
continue;
}
ls[i].log = *ls[i].logp;
if (ls[i].inherited) {
/* TODO: close on exit */
@ -357,6 +355,8 @@ ngx_configure_listening_sockets(ngx_cycle_t *cycle)
ls = cycle->listening.elts;
for (i = 0; i < cycle->listening.nelts; i++) {
ls[i].log = *ls[i].logp;
if (ls[i].rcvbuf != -1) {
if (setsockopt(ls[i].fd, SOL_SOCKET, SO_RCVBUF,
(const void *) &ls[i].rcvbuf, sizeof(int))