X-Git-Url: https://git.tcpdump.org/tcpdump/blobdiff_plain/ba8936b39b0ce2ff02f3aeb307df4c27657652d8..cda9bf8c5f842fc7110fbbf2234bcc898f78c0bd:/print-vxlan-gpe.c diff --git a/print-vxlan-gpe.c b/print-vxlan-gpe.c index 7a022598..1364534e 100644 --- a/print-vxlan-gpe.c +++ b/print-vxlan-gpe.c @@ -69,13 +69,13 @@ vxlan_gpe_print(netdissect_options *ndo, const u_char *bp, u_int len) ND_TCHECK_LEN(bp, VXLAN_GPE_HDR_LEN); - flags = EXTRACT_U_1(bp); + flags = GET_U_1(bp); bp += 3; - next_protocol = EXTRACT_U_1(bp); + next_protocol = GET_U_1(bp); bp += 1; - vni = EXTRACT_BE_U_3(bp); + vni = GET_BE_U_3(bp); bp += 4; ND_PRINT("VXLAN-GPE, ");