summaryrefslogtreecommitdiff
path: root/print-vxlan.c
diff options
context:
space:
mode:
authorFrancois-Xavier Le Bail <devel.fx.lebail@orange.fr>2017-11-18 11:52:52 +0100
committerFrancois-Xavier Le Bail <devel.fx.lebail@orange.fr>2017-11-18 13:56:40 +0100
commit577621026df8d4a33a34d4e125f9ec964fc0e53c (patch)
treea25ed4b22461cbb115c9e112935c28bcd57406bc /print-vxlan.c
parent0e854b0937199956478686ae610ff9f794aafc6b (diff)
downloadtcpdump-577621026df8d4a33a34d4e125f9ec964fc0e53c.tar.gz
Rename EXTRACT_nBITS() macros to EXTRACT_BE_nBITS()
It indicates clearly that these macros are used to extract big-endian integral values.
Diffstat (limited to 'print-vxlan.c')
-rw-r--r--print-vxlan.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/print-vxlan.c b/print-vxlan.c
index 0c2a82e2..a3de7b30 100644
--- a/print-vxlan.c
+++ b/print-vxlan.c
@@ -58,7 +58,7 @@ vxlan_print(netdissect_options *ndo, const u_char *bp, u_int len)
flags = *bp;
bp += 4;
- vni = EXTRACT_24BITS(bp);
+ vni = EXTRACT_BE_24BITS(bp);
bp += 4;
ND_PRINT((ndo, "VXLAN, "));