changeset 7122:935b1902a7dd

Fixed build without IPv6, broken by 874171c3c71a.
author Maxim Dounin <mdounin@mdounin.ru>
date Thu, 05 Oct 2017 16:50:35 +0300
parents 924b6ef942bf
children 6c52b24fcf8e
files src/core/ngx_inet.c
diffstat 1 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/core/ngx_inet.c
+++ b/src/core/ngx_inet.c
@@ -182,9 +182,11 @@ ngx_sock_ntop(struct sockaddr *sa, sockl
     ngx_uint_t port)
 {
     u_char               *p;
+#if (NGX_HAVE_INET6 || NGX_HAVE_UNIX_DOMAIN)
+    size_t                n;
+#endif
     struct sockaddr_in   *sin;
 #if (NGX_HAVE_INET6)
-    size_t                n;
     struct sockaddr_in6  *sin6;
 #endif
 #if (NGX_HAVE_UNIX_DOMAIN)