use correct name

This commit is contained in:
Igor Sysoev 2009-05-05 13:12:59 +00:00
parent 682414f352
commit 00bd137064
3 changed files with 3 additions and 3 deletions

View File

@ -342,7 +342,7 @@ ngx_open_listening_sockets(ngx_cycle_t *cycle)
void
ngx_configure_listening_socket(ngx_cycle_t *cycle)
ngx_configure_listening_sockets(ngx_cycle_t *cycle)
{
ngx_uint_t i;
ngx_listening_t *ls;

View File

@ -165,7 +165,7 @@ struct ngx_connection_s {
ngx_int_t ngx_set_inherited_sockets(ngx_cycle_t *cycle);
ngx_int_t ngx_open_listening_sockets(ngx_cycle_t *cycle);
void ngx_configure_listening_socket(ngx_cycle_t *cycle);
void ngx_configure_listening_sockets(ngx_cycle_t *cycle);
void ngx_close_listening_sockets(ngx_cycle_t *cycle);
void ngx_close_connection(ngx_connection_t *c);
ngx_int_t ngx_connection_error(ngx_connection_t *c, ngx_err_t err, char *text);

View File

@ -573,7 +573,7 @@ ngx_init_cycle(ngx_cycle_t *old_cycle)
}
if (!ngx_test_config) {
ngx_configure_listening_socket(cycle);
ngx_configure_listening_sockets(cycle);
}
}