]> git.kaiwu.me - nginx.git/commitdiff
use correct name
authorIgor Sysoev <igor@sysoev.ru>
Tue, 5 May 2009 13:12:59 +0000 (13:12 +0000)
committerIgor Sysoev <igor@sysoev.ru>
Tue, 5 May 2009 13:12:59 +0000 (13:12 +0000)
src/core/ngx_connection.c
src/core/ngx_connection.h
src/core/ngx_cycle.c

index 9ec9c7d0906a2468ad852ffaec95c0b10fdc4e4c..b843b866ba0179a8435e27f68ccc05b79229280c 100644 (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;
index 10799ef12be64c0cc084ffc6bda53ccb00a07fda..fc6416c093c8da78eb32f3e7d1a306f34e568e63 100644 (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);
index 251892b74973f90d7db8ac677b1e1bc908b769c1..fc65765b0006de0056dffb487c64e3788225c89d 100644 (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);
         }
     }