aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ieee80211-radiotap.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/dissectors/packet-ieee80211-radiotap.c')
-rw-r--r--epan/dissectors/packet-ieee80211-radiotap.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/dissectors/packet-ieee80211-radiotap.c b/epan/dissectors/packet-ieee80211-radiotap.c
index e346422200..3ba618740e 100644
--- a/epan/dissectors/packet-ieee80211-radiotap.c
+++ b/epan/dissectors/packet-ieee80211-radiotap.c
@@ -456,7 +456,7 @@ static const true_false_string preamble_type = {
*/
static gboolean
-capture_radiotap(const guchar * pd, int offset, int len, packet_counts * ld, const union wtap_pseudo_header *pseudo_header _U_)
+capture_radiotap(const guchar * pd, int offset, int len, capture_packet_info_t *cpinfo, const union wtap_pseudo_header *pseudo_header _U_)
{
guint16 it_len;
guint32 present, xpresent;
@@ -537,9 +537,9 @@ capture_radiotap(const guchar * pd, int offset, int len, packet_counts * ld, con
/* 802.11 header follows */
if (rflags & IEEE80211_RADIOTAP_F_DATAPAD)
- return capture_ieee80211_datapad(pd, offset + it_len, len, ld, pseudo_header);
+ return capture_ieee80211_datapad(pd, offset + it_len, len, cpinfo, pseudo_header);
- return capture_ieee80211(pd, offset + it_len, len, ld, pseudo_header);
+ return capture_ieee80211(pd, offset + it_len, len, cpinfo, pseudo_header);
}
static int