aboutsummaryrefslogtreecommitdiff
path: root/networking/udhcp/dhcprelay.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2011-01-16 01:25:34 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2011-01-16 01:25:34 +0100
commitdf1689138e71fa3648209db28146a595c4e63c26 (patch)
tree173da57b164e8ecdc9cf80da41a73443dd7a6c97 /networking/udhcp/dhcprelay.c
parent068444629fbcf59dd8165a63885f8e69fd5cb474 (diff)
downloadbusybox-df1689138e71fa3648209db28146a595c4e63c26.tar.gz
remove a few aliasing warnings
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/udhcp/dhcprelay.c')
-rw-r--r--networking/udhcp/dhcprelay.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/udhcp/dhcprelay.c b/networking/udhcp/dhcprelay.c
index 759a4ba03..86ef04a62 100644
--- a/networking/udhcp/dhcprelay.c
+++ b/networking/udhcp/dhcprelay.c
@@ -25,7 +25,7 @@ struct xid_item {
uint32_t xid;
struct sockaddr_in ip;
struct xid_item *next;
-};
+} FIX_ALIASING;
#define dhcprelay_xid_list (*(struct xid_item*)&bb_common_bufsiz1)