diff options
author | Francois-Xavier Le Bail <devel.fx.lebail@orange.fr> | 2017-11-18 15:00:31 +0100 |
---|---|---|
committer | Francois-Xavier Le Bail <devel.fx.lebail@orange.fr> | 2017-11-18 15:00:31 +0100 |
commit | 5287bffd3f4fa1fda9d7734b45f8cf02391d3855 (patch) | |
tree | 0cdc4b69b505abf2eb675e03c9a5cc8e4b3c2e4a /print-802_15_4.c | |
parent | 577621026df8d4a33a34d4e125f9ec964fc0e53c (diff) | |
download | tcpdump-5287bffd3f4fa1fda9d7734b45f8cf02391d3855.tar.gz |
Remove EXTRACT_LE_8BITS() macro, use EXTRACT_8BITS() macro
This indicates that it's not specifically big-endian or little-endian.
Diffstat (limited to 'print-802_15_4.c')
-rw-r--r-- | print-802_15_4.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/print-802_15_4.c b/print-802_15_4.c index 1c77da8a..781360b9 100644 --- a/print-802_15_4.c +++ b/print-802_15_4.c @@ -78,7 +78,7 @@ ieee802_15_4_if_print(netdissect_options *ndo, hdrlen = 3; fc = EXTRACT_LE_16BITS(p); - seq = EXTRACT_LE_8BITS(p + 2); + seq = EXTRACT_8BITS(p + 2); p += 3; caplen -= 3; |