diff options
Diffstat (limited to 'busybox/networking/traceroute.c')
-rw-r--r-- | busybox/networking/traceroute.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/busybox/networking/traceroute.c b/busybox/networking/traceroute.c index 44ffdf0..cf90ec0 100644 --- a/busybox/networking/traceroute.c +++ b/busybox/networking/traceroute.c @@ -101,7 +101,8 @@ struct opacket { #include "busybox.h" -static u_char packet[512]; /* last inbound (icmp) packet */ + /* last inbound (icmp) packet */ +static u_char packet[512] __attribute__ ((aligned)); static struct opacket *outpacket; /* last output (udp) packet */ static int s; /* receive (icmp) socket file descriptor */ |