summaryrefslogtreecommitdiff
path: root/print-cnfp.c
diff options
context:
space:
mode:
authorFrancois-Xavier Le Bail <devel.fx.lebail@orange.fr>2020-08-10 16:22:37 +0200
committerFrancois-Xavier Le Bail <devel.fx.lebail@orange.fr>2020-09-05 14:59:21 +0200
commit929e4be621ebdcede37865a5767a175f083f9138 (patch)
treebf6ecbc038696e66176b2d50e04e015767f23b3d /print-cnfp.c
parent54b5db3dde658894be730b15480f9b6e27b717a0 (diff)
downloadtcpdump-test-rc.tar.gz
Remove many (761) redundant ND_TCHECK_n() callstest-rc
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-cnfp.c')
-rw-r--r--print-cnfp.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/print-cnfp.c b/print-cnfp.c
index 4799ce14..69f905f5 100644
--- a/print-cnfp.c
+++ b/print-cnfp.c
@@ -468,7 +468,6 @@ cnfp_print(netdissect_options *ndo, const u_char *cp)
* First 2 bytes are the version number.
*/
ndo->ndo_protocol = "cnfp";
- ND_TCHECK_2(cp);
ver = GET_BE_U_2(cp);
switch (ver) {
@@ -488,9 +487,4 @@ cnfp_print(netdissect_options *ndo, const u_char *cp)
ND_PRINT("NetFlow v%x", ver);
break;
}
- return;
-
-trunc:
- nd_print_trunc(ndo);
- return;
}