commit | d7b3b48f0ee5cc33f44315c541fec3bf72fe4bc1 | [log] [tgz] |
---|---|---|
author | Igor Sysoev <igor@sysoev.ru> | Tue Feb 24 14:25:24 2009 +0000 |
committer | Igor Sysoev <igor@sysoev.ru> | Tue Feb 24 14:25:24 2009 +0000 |
tree | bbcacbd52f056c1e850331fcbdcaa827bf8bcd84 | |
parent | 36860101ec7a3de1d337ecb6f8f3e2bfd0fb63cb [diff] [blame] |
fix the previous commit
diff --git a/src/core/ngx_inet.h b/src/core/ngx_inet.h index 482b0e4..8557409 100644 --- a/src/core/ngx_inet.h +++ b/src/core/ngx_inet.h
@@ -35,17 +35,17 @@ typedef struct { - struct in6_addr addr; - struct in6_addr mask; -} ngx_in6_cidr_t; + in_addr_t addr; + in_addr_t mask; +} ngx_in_cidr_t; #if (NGX_HAVE_INET6) typedef struct { - in_addr_t addr; - in_addr_t mask; -} ngx_in_cidr_t; + struct in6_addr addr; + struct in6_addr mask; +} ngx_in6_cidr_t; #endif