summaryrefslogtreecommitdiff
path: root/epan/dissectors/packet-isl.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/dissectors/packet-isl.c')
-rw-r--r--epan/dissectors/packet-isl.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/dissectors/packet-isl.c b/epan/dissectors/packet-isl.c
index 462b484623..e3a34eab16 100644
--- a/epan/dissectors/packet-isl.c
+++ b/epan/dissectors/packet-isl.c
@@ -89,7 +89,7 @@ static dissector_handle_t tr_handle;
static dissector_handle_t data_handle;
void
-capture_isl(const guchar *pd, int offset, int len, packet_counts *ld)
+capture_isl(const guchar *pd, int offset, int len, packet_counts *ld, const union wtap_pseudo_header *pseudo_header _U_)
{
guint8 type;
@@ -104,12 +104,12 @@ capture_isl(const guchar *pd, int offset, int len, packet_counts *ld)
case TYPE_ETHER:
offset += 14+12; /* skip the header */
- capture_eth(pd, offset, len, ld);
+ capture_eth(pd, offset, len, ld, pseudo_header);
break;
case TYPE_TR:
offset += 14+17; /* skip the header */
- capture_tr(pd, offset, len, ld);
+ capture_tr(pd, offset, len, ld, pseudo_header);
break;
default: