diff options
author | Francois-Xavier Le Bail <devel.fx.lebail@orange.fr> | 2017-11-27 18:38:56 +0100 |
---|---|---|
committer | Francois-Xavier Le Bail <devel.fx.lebail@orange.fr> | 2017-11-27 20:57:24 +0100 |
commit | f085c93f59fb2332e09f3da20eef5fb2bbd04431 (patch) | |
tree | b3b4364a44ce79355b3e559b1470493e4aaefafc /print-rpki-rtr.c | |
parent | 99227bf55234b457b8e5ac39992a6db6db388939 (diff) | |
download | tcpdump-f085c93f59fb2332e09f3da20eef5fb2bbd04431.tar.gz |
Use more the EXTRACT_U_1() macro (31/n)
In ND_PRINT() macro call(s) (step 9).
*(p)
Diffstat (limited to 'print-rpki-rtr.c')
-rw-r--r-- | print-rpki-rtr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/print-rpki-rtr.c b/print-rpki-rtr.c index 2c950fba..1af8e863 100644 --- a/print-rpki-rtr.c +++ b/print-rpki-rtr.c @@ -190,7 +190,7 @@ rpki_rtr_pdu_print (netdissect_options *ndo, const u_char *tptr, const u_int len * version 0, there is no way to know exactly how to skip the * current PDU. */ - ND_PRINT((ndo, "%sRPKI-RTRv%u (unknown)", indent_string(8), *tptr)); + ND_PRINT((ndo, "%sRPKI-RTRv%u (unknown)", indent_string(8), EXTRACT_U_1(tptr))); return len; } if (len < sizeof(rpki_rtr_pdu)) { |