diff options
Diffstat (limited to 'networking/traceroute.c')
-rw-r--r-- | networking/traceroute.c | 4 |
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 | |||
791 | common_traceroute_main(int op, char **argv) | 791 | common_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) |