summaryrefslogtreecommitdiff
path: root/print-aodv.c
diff options
context:
space:
mode:
authorFrancois-Xavier Le Bail <devel.fx.lebail@orange.fr>2020-09-05 19:40:32 +0200
committerFrancois-Xavier Le Bail <devel.fx.lebail@orange.fr>2020-09-06 20:22:29 +0200
commitabc8c2d61c65757011d9d32abb01cd1e51232f3a (patch)
treea4c9890086314bffc5236c815c773975e471cc4a /print-aodv.c
parent54b5db3dde658894be730b15480f9b6e27b717a0 (diff)
downloadtcpdump-abc8c2d61c65757011d9d32abb01cd1e51232f3a.tar.gz
Remove many (762) now redundant ND_TCHECK_n() calls
ND_TCHECK_n(e), n in { 1, 2, 3, 4, 8 }. They are redundant because they are followed by a GET_.*_n(e) call, same n, same e, which do the bounds check. Remove unused 'trunc' labels and most associated codes. Update the outputs of some tests accordingly.
Diffstat (limited to 'print-aodv.c')
-rw-r--r--print-aodv.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/print-aodv.c b/print-aodv.c
index 1f53f827..97421433 100644
--- a/print-aodv.c
+++ b/print-aodv.c
@@ -485,7 +485,6 @@ aodv_print(netdissect_options *ndo,
* The message type is the first byte; make sure we have it
* and then fetch it.
*/
- ND_TCHECK_1(dat);
msg_type = GET_U_1(dat);
ND_PRINT(" aodv");
@@ -535,8 +534,4 @@ aodv_print(netdissect_options *ndo,
default:
ND_PRINT(" type %u %u", msg_type, length);
}
- return;
-
-trunc:
- nd_print_trunc(ndo);
}