rename ngx_peer_addr_t to ngx_addr_t
diff --git a/src/core/ngx_inet.c b/src/core/ngx_inet.c
index 7dfd341..5d2f86e 100644
--- a/src/core/ngx_inet.c
+++ b/src/core/ngx_inet.c
@@ -485,7 +485,7 @@
saun->sun_family = AF_UNIX;
(void) ngx_cpystrn((u_char *) saun->sun_path, path, len);
- u->addrs = ngx_pcalloc(pool, sizeof(ngx_peer_addr_t));
+ u->addrs = ngx_pcalloc(pool, sizeof(ngx_addr_t));
if (u->addrs == NULL) {
return NGX_ERROR;
}
@@ -846,7 +846,7 @@
/* MP: ngx_shared_palloc() */
- u->addrs = ngx_pcalloc(pool, i * sizeof(ngx_peer_addr_t));
+ u->addrs = ngx_pcalloc(pool, i * sizeof(ngx_addr_t));
if (u->addrs == NULL) {
return NGX_ERROR;
}
@@ -884,7 +884,7 @@
/* MP: ngx_shared_palloc() */
- u->addrs = ngx_pcalloc(pool, sizeof(ngx_peer_addr_t));
+ u->addrs = ngx_pcalloc(pool, sizeof(ngx_addr_t));
if (u->addrs == NULL) {
return NGX_ERROR;
}