summaryrefslogtreecommitdiff
path: root/print-bt.c
diff options
context:
space:
mode:
authorFrancois-Xavier Le Bail <devel.fx.lebail@orange.fr>2018-06-16 17:23:21 +0200
committerFrancois-Xavier Le Bail <devel.fx.lebail@orange.fr>2019-03-26 21:06:24 +0100
commitee68aa36460d7efeca48747f33b7f2adc0900bfb (patch)
tree72c1b65d29301835c0e064b433ea685fc856a68e /print-bt.c
parent1af20c3adc4dfef93de41d4fcd02f0aeb6bbfd4e (diff)
downloadtcpdump-ee68aa36460d7efeca48747f33b7f2adc0900bfb.tar.gz
Use the new GET_ macros instead of the EXTRACT_ ones
The exceptions are currently: Some EXTRACT_ in print-juniper.c, not used on packet buffer pointer. An EXTRACT_BE_U_3 in addrtoname.c, not always used on packet buffer pointer.
Diffstat (limited to 'print-bt.c')
-rw-r--r--print-bt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/print-bt.c b/print-bt.c
index 5ca31596..77aebe42 100644
--- a/print-bt.c
+++ b/print-bt.c
@@ -63,7 +63,7 @@ bt_if_print(netdissect_options *ndo, const struct pcap_pkthdr *h, const u_char *
ND_TCHECK_4(&hdr->direction);
if (ndo->ndo_eflag)
ND_PRINT(", hci length %u, direction %s", length,
- (EXTRACT_BE_U_4(hdr->direction)&0x1) ? "in" : "out");
+ (GET_BE_U_4(hdr->direction)&0x1) ? "in" : "out");
if (!ndo->ndo_suppress_default_print)
ND_DEFAULTPRINT(p, caplen);