diff options
author | Francois-Xavier Le Bail <devel.fx.lebail@orange.fr> | 2017-11-18 11:52:52 +0100 |
---|---|---|
committer | Francois-Xavier Le Bail <devel.fx.lebail@orange.fr> | 2017-11-18 13:56:40 +0100 |
commit | 577621026df8d4a33a34d4e125f9ec964fc0e53c (patch) | |
tree | a25ed4b22461cbb115c9e112935c28bcd57406bc /print-carp.c | |
parent | 0e854b0937199956478686ae610ff9f794aafc6b (diff) | |
download | tcpdump-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-carp.c')
-rw-r--r-- | print-carp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/print-carp.c b/print-carp.c index c650d181..918617bd 100644 --- a/print-carp.c +++ b/print-carp.c @@ -73,9 +73,9 @@ carp_print(netdissect_options *ndo, register const u_char *bp, register u_int le vec[0].len = len; if (ND_TTEST2(bp[0], len) && in_cksum(vec, 1)) ND_PRINT((ndo, " (bad carp cksum %x!)", - EXTRACT_16BITS(&bp[6]))); + EXTRACT_BE_16BITS(&bp[6]))); } - ND_PRINT((ndo, "counter=%" PRIu64, EXTRACT_64BITS(&bp[8]))); + ND_PRINT((ndo, "counter=%" PRIu64, EXTRACT_BE_64BITS(&bp[8]))); return; trunc: |