aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/blf.c
diff options
context:
space:
mode:
authorPascal Quantin <pascal@wireshark.org>2023-08-18 17:42:50 +0200
committerPascal Quantin <pascal@wireshark.org>2023-08-18 17:42:50 +0200
commit233da618a6d6ef68d809d2ffedb8f6a61484b937 (patch)
treef14c6f8a3575e12313179035e0cd4505f098a1b6 /wiretap/blf.c
parent8025d90971f46acabe77446d1771f0d0649fc6b5 (diff)
BLF: fix a typo introduced in 9bdf256a8d
Diffstat (limited to 'wiretap/blf.c')
-rw-r--r--wiretap/blf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/wiretap/blf.c b/wiretap/blf.c
index 3989adaba4..59c7ad832a 100644
--- a/wiretap/blf.c
+++ b/wiretap/blf.c
@@ -426,7 +426,7 @@ fix_endianness_blf_apptext_header(blf_apptext_t *header) {
static void
fix_endianness_blf_ethernet_status_header(blf_ethernet_status_t* header) {
header->channel = GUINT16_FROM_LE(header->channel);
- header->flags = GUINT16_FROM_LE(header->channel);
+ header->flags = GUINT16_FROM_LE(header->flags);
/*uint8_t linkStatus;*/
/*uint8_t ethernetPhy;*/
/*uint8_t duplex;*/