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 520cc82..68e3c36 100644 --- a/networking/libiproute/iproute.c +++ b/networking/libiproute/iproute.c @@ -22,7 +22,7 @@ #endif -typedef struct filter_t { +struct filter_t { int tb; smallint flushed; char *flushb; @@ -43,7 +43,8 @@ typedef struct filter_t { inet_prefix mdst; inet_prefix rsrc; inet_prefix msrc; -} filter_t; +} FIX_ALIASING; +typedef struct filter_t filter_t; #define G_filter (*(filter_t*)&bb_common_bufsiz1) |