diff options
author | Francois-Xavier Le Bail <devel.fx.lebail@orange.fr> | 2018-05-10 18:05:56 +0200 |
---|---|---|
committer | Francois-Xavier Le Bail <devel.fx.lebail@orange.fr> | 2018-05-10 18:05:56 +0200 |
commit | 40ae3ad744d9f71079b410a810acbc33ef39f8ba (patch) | |
tree | 08a7248e1fbf30a52c35c98065df6facecb7ba8e /print-lane.c | |
parent | 1889ef324cceaf8b667a9d4dade8260c395913c7 (diff) | |
download | tcpdump-40ae3ad744d9f71079b410a810acbc33ef39f8ba.tar.gz |
Add more nd_print_trunc() calls
Update the output of some tests accordingly.
Moreover:
Add a ndo_protocol field assignment.
Diffstat (limited to 'print-lane.c')
-rw-r--r-- | print-lane.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/print-lane.c b/print-lane.c index c9acd446..e4f8a08b 100644 --- a/print-lane.c +++ b/print-lane.c @@ -86,7 +86,7 @@ lane_print(netdissect_options *ndo, const u_char *p, u_int length, u_int caplen) ndo->ndo_protocol = "lane"; if (caplen < sizeof(struct lane_controlhdr)) { - ND_PRINT("[|lane]"); + nd_print_trunc(ndo); return; } |