summaryrefslogtreecommitdiff
path: root/wiretap
diff options
context:
space:
mode:
Diffstat (limited to 'wiretap')
-rw-r--r--wiretap/pcapng.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/wiretap/pcapng.c b/wiretap/pcapng.c
index 76ec9294f3..bb94df2773 100644
--- a/wiretap/pcapng.c
+++ b/wiretap/pcapng.c
@@ -1119,8 +1119,8 @@ pcapng_read_name_resolution_block(FILE_T fh, pcapng_block_header_t *bh, pcapng_t
block_read += bytes_read;
if (pn->byte_swapped) {
- nrb.record_type = BSWAP32(nrb.record_type);
- nrb.record_len = BSWAP32(nrb.record_len);
+ nrb.record_type = BSWAP16(nrb.record_type);
+ nrb.record_len = BSWAP16(nrb.record_len);
}
switch(nrb.record_type) {