diff options
Diffstat (limited to 'networking/libiproute/ipaddress.c')
-rw-r--r-- | networking/libiproute/ipaddress.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/networking/libiproute/ipaddress.c b/networking/libiproute/ipaddress.c index f2e340a42..af29dd301 100644 --- a/networking/libiproute/ipaddress.c +++ b/networking/libiproute/ipaddress.c | |||
@@ -23,7 +23,7 @@ | |||
23 | #define IFF_LOWER_UP 0x10000 /* driver signals L1 up*/ | 23 | #define IFF_LOWER_UP 0x10000 /* driver signals L1 up*/ |
24 | #endif | 24 | #endif |
25 | 25 | ||
26 | typedef struct filter_t { | 26 | struct filter_t { |
27 | char *label; | 27 | char *label; |
28 | char *flushb; | 28 | char *flushb; |
29 | struct rtnl_handle *rth; | 29 | struct rtnl_handle *rth; |
@@ -38,7 +38,8 @@ typedef struct filter_t { | |||
38 | smallint up; | 38 | smallint up; |
39 | smallint flushed; | 39 | smallint flushed; |
40 | inet_prefix pfx; | 40 | inet_prefix pfx; |
41 | } filter_t; | 41 | } FIX_ALIASING; |
42 | typedef struct filter_t filter_t; | ||
42 | 43 | ||
43 | #define G_filter (*(filter_t*)&bb_common_bufsiz1) | 44 | #define G_filter (*(filter_t*)&bb_common_bufsiz1) |
44 | 45 | ||