diff options
Diffstat (limited to 'networking/libiproute/iproute.c')
-rw-r--r-- | networking/libiproute/iproute.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/networking/libiproute/iproute.c b/networking/libiproute/iproute.c index 520cc820a..68e3c36a0 100644 --- a/networking/libiproute/iproute.c +++ b/networking/libiproute/iproute.c | |||
@@ -22,7 +22,7 @@ | |||
22 | #endif | 22 | #endif |
23 | 23 | ||
24 | 24 | ||
25 | typedef struct filter_t { | 25 | struct filter_t { |
26 | int tb; | 26 | int tb; |
27 | smallint flushed; | 27 | smallint flushed; |
28 | char *flushb; | 28 | char *flushb; |
@@ -43,7 +43,8 @@ typedef struct filter_t { | |||
43 | inet_prefix mdst; | 43 | inet_prefix mdst; |
44 | inet_prefix rsrc; | 44 | inet_prefix rsrc; |
45 | inet_prefix msrc; | 45 | inet_prefix msrc; |
46 | } filter_t; | 46 | } FIX_ALIASING; |
47 | typedef struct filter_t filter_t; | ||
47 | 48 | ||
48 | #define G_filter (*(filter_t*)&bb_common_bufsiz1) | 49 | #define G_filter (*(filter_t*)&bb_common_bufsiz1) |
49 | 50 | ||