diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-12-12 02:42:35 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-12-12 02:42:35 +0100 |
commit | 31e2e7b86388e4ece09f37866bd1411f357cafbd (patch) | |
tree | d87ab658d71ea54decdf6f6c94a0de1133124ea1 /networking/traceroute.c | |
parent | 1315c30fefe6e64cd2cbc95fe484b02ce70afec1 (diff) | |
download | busybox-w32-31e2e7b86388e4ece09f37866bd1411f357cafbd.tar.gz busybox-w32-31e2e7b86388e4ece09f37866bd1411f357cafbd.tar.bz2 busybox-w32-31e2e7b86388e4ece09f37866bd1411f357cafbd.zip |
randomconfig fixes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/traceroute.c')
-rw-r--r-- | networking/traceroute.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/networking/traceroute.c b/networking/traceroute.c index 110bdfa76..a30decf10 100644 --- a/networking/traceroute.c +++ b/networking/traceroute.c | |||
@@ -703,9 +703,10 @@ packet_ok(int read_len, len_and_sockaddr *from_lsa, | |||
703 | } | 703 | } |
704 | #else /* !ENABLE_TRACEROUTE6 */ | 704 | #else /* !ENABLE_TRACEROUTE6 */ |
705 | static ALWAYS_INLINE int | 705 | static ALWAYS_INLINE int |
706 | packet_ok(int read_len, len_and_sockaddr *from_lsa, | 706 | packet_ok(int read_len, |
707 | struct sockaddr *to UNUSED_PARAM, | 707 | len_and_sockaddr *from_lsa IF_NOT_FEATURE_TRACEROUTE_VERBOSE(UNUSED_PARAM), |
708 | int seq) | 708 | struct sockaddr *to UNUSED_PARAM, |
709 | int seq) | ||
709 | { | 710 | { |
710 | return packet4_ok(read_len, &from_lsa->u.sin, seq); | 711 | return packet4_ok(read_len, &from_lsa->u.sin, seq); |
711 | } | 712 | } |