From ee68aa36460d7efeca48747f33b7f2adc0900bfb Mon Sep 17 00:00:00 2001 From: Francois-Xavier Le Bail Date: Sat, 16 Jun 2018 17:23:21 +0200 Subject: 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. --- print-calm-fast.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'print-calm-fast.c') diff --git a/print-calm-fast.c b/print-calm-fast.c index 45bb5cc7..6331a9c9 100644 --- a/print-calm-fast.c +++ b/print-calm-fast.c @@ -47,8 +47,8 @@ calm_fast_print(netdissect_options *ndo, const u_char *bp, u_int length, const s ND_TCHECK_2(bp); if (length < 2) goto trunc; - srcNwref = EXTRACT_U_1(bp); - dstNwref = EXTRACT_U_1(bp + 1); + srcNwref = GET_U_1(bp); + dstNwref = GET_U_1(bp + 1); length -= 2; bp += 2; -- cgit v1.2.1