aboutsummaryrefslogtreecommitdiff
path: root/networking/traceroute.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2013-11-29 16:43:33 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2013-11-29 16:43:33 +0100
commit9b2a9f0210f13f1c59c0b954c4aa0eeb0a66efd1 (patch)
treea950fa73740d345e11ba1ce90f4fc39ee12516e6 /networking/traceroute.c
parent1a7256ac38284caffd2a0de2250364369059be69 (diff)
downloadbusybox-w32-9b2a9f0210f13f1c59c0b954c4aa0eeb0a66efd1.tar.gz
busybox-w32-9b2a9f0210f13f1c59c0b954c4aa0eeb0a66efd1.tar.bz2
busybox-w32-9b2a9f0210f13f1c59c0b954c4aa0eeb0a66efd1.zip
fix assorted unused code and wrong format specs found by cppchekc (bug 6716)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/traceroute.c')
-rw-r--r--networking/traceroute.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/networking/traceroute.c b/networking/traceroute.c
index 0c18d6c0c..97a7a19e0 100644
--- a/networking/traceroute.c
+++ b/networking/traceroute.c
@@ -791,7 +791,9 @@ static int
791common_traceroute_main(int op, char **argv) 791common_traceroute_main(int op, char **argv)
792{ 792{
793 int minpacket; 793 int minpacket;
794#ifdef IP_TOS
794 int tos = 0; 795 int tos = 0;
796#endif
795 int max_ttl = 30; 797 int max_ttl = 30;
796 int nprobes = 3; 798 int nprobes = 3;
797 int first_ttl = 1; 799 int first_ttl = 1;
@@ -838,8 +840,10 @@ common_traceroute_main(int op, char **argv)
838 if (op & OPT_IP_CHKSUM) 840 if (op & OPT_IP_CHKSUM)
839 bb_error_msg("warning: ip checksums disabled"); 841 bb_error_msg("warning: ip checksums disabled");
840#endif 842#endif
843#ifdef IP_TOS
841 if (op & OPT_TOS) 844 if (op & OPT_TOS)
842 tos = xatou_range(tos_str, 0, 255); 845 tos = xatou_range(tos_str, 0, 255);
846#endif
843 if (op & OPT_MAX_TTL) 847 if (op & OPT_MAX_TTL)
844 max_ttl = xatou_range(max_ttl_str, 1, 255); 848 max_ttl = xatou_range(max_ttl_str, 1, 255);
845 if (op & OPT_PORT) 849 if (op & OPT_PORT)