diff options
author | Francois-Xavier Le Bail <devel.fx.lebail@orange.fr> | 2018-09-11 12:27:55 +0200 |
---|---|---|
committer | Francois-Xavier Le Bail <devel.fx.lebail@orange.fr> | 2018-09-11 13:09:05 +0200 |
commit | 77a49fcb6ee80c8a107dd179e445c4eb9aab48e7 (patch) | |
tree | 923eeb78551c4a17bda5409ab0f9ce78e6b1fb73 /print-lisp.c | |
parent | e2293be847464567fb59a532759e61c712893549 (diff) | |
download | tcpdump-77a49fcb6ee80c8a107dd179e445c4eb9aab48e7.tar.gz |
Add the nd_print_invalid() function
It prints " (invalid)", used for malformed or corrupted packets.
Moreover:
Update CONTRIBUTING.
Diffstat (limited to 'print-lisp.c')
-rw-r--r-- | print-lisp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/print-lisp.c b/print-lisp.c index 0d9f67d2..74290639 100644 --- a/print-lisp.c +++ b/print-lisp.c @@ -389,7 +389,7 @@ trunc: nd_print_trunc(ndo); return; invalid: - ND_PRINT("%s", istr); + nd_print_invalid(ndo); return; } |