aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/vwr.c
diff options
context:
space:
mode:
Diffstat (limited to 'wiretap/vwr.c')
-rw-r--r--wiretap/vwr.c11
1 files changed, 4 insertions, 7 deletions
diff --git a/wiretap/vwr.c b/wiretap/vwr.c
index 846f0d5963..2a2107d9c0 100644
--- a/wiretap/vwr.c
+++ b/wiretap/vwr.c
@@ -1454,22 +1454,19 @@ static gboolean vwr_read_s2_s3_W_rec(vwr_t *vwr, struct wtap_pkthdr *phdr,
}
/*
+ * Fill up the per-packet header.
+ *
* We also copy over 16 bytes of PLCP header + 1 byte of L1P for user
* position.
*
* XXX - for S2, we don't have 16 bytes of PLCP header; do we have
* the 1 byte of L1P? The current Veriwave dissector just blindly
* assumes there's a 17-byte blob before the 802.11 header.
- */
- actual_octets = actual_octets + 17;
-
- /*
- * Fill up the per-packet header.
*
* We include the length of the metadata headers in the packet lengths.
*/
- phdr->len = STATS_COMMON_FIELDS_LEN + EXT_WLAN_FIELDS_LEN + actual_octets;
- phdr->caplen = STATS_COMMON_FIELDS_LEN + EXT_WLAN_FIELDS_LEN + actual_octets;
+ phdr->len = STATS_COMMON_FIELDS_LEN + EXT_WLAN_FIELDS_LEN + 17 + actual_octets;
+ phdr->caplen = STATS_COMMON_FIELDS_LEN + EXT_WLAN_FIELDS_LEN + 17 + actual_octets;
phdr->ts.secs = (time_t)s_sec;
phdr->ts.nsecs = (int)(s_usec * 1000);