aboutsummaryrefslogtreecommitdiffstats
path: root/packet-esis.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2002-04-07 21:54:48 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2002-04-07 21:54:48 +0000
commitec47ea7ff43c5cfa158f0826fc57f2deefc38280 (patch)
tree66b52e9034aba4a08b1c6fd243a4c2c79828ce66 /packet-esis.c
parent100efabfe4a95dae8a4c096a8ce67d541d575890 (diff)
Get rid of the unused "pinfo" argument to "dissect_osi_options()".
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@5110 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-esis.c')
-rw-r--r--packet-esis.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/packet-esis.c b/packet-esis.c
index 3aa0847c47..c6a33d141b 100644
--- a/packet-esis.c
+++ b/packet-esis.c
@@ -2,7 +2,7 @@
* Routines for ISO/OSI End System to Intermediate System
* Routing Exchange Protocol ISO 9542.
*
- * $Id: packet-esis.c,v 1.22 2002/01/24 09:20:47 guy Exp $
+ * $Id: packet-esis.c,v 1.23 2002/04/07 21:54:48 guy Exp $
* Ralf Schneider <Ralf.Schneider@t-online.de>
*
* Ethereal - Network traffic analyzer
@@ -185,7 +185,7 @@ esis_dissect_esh_pdu( u_char len, tvbuff_t *tvb, packet_info *pinfo,
offset += sal;
len -= ( sal + 1 );
}
- dissect_osi_options( PDU_TYPE_ESIS_ESH, len, tvb, offset, pinfo, tree );
+ dissect_osi_options( PDU_TYPE_ESIS_ESH, len, tvb, offset, tree );
}
} /* esis_dissect_esh_pdu */ ;
@@ -209,7 +209,7 @@ esis_dissect_ish_pdu( u_char len, tvbuff_t *tvb, packet_info *pinfo,
offset += netl;
len -= ( netl + 1 );
- dissect_osi_options( PDU_TYPE_ESIS_ISH, len, tvb, offset, pinfo, tree );
+ dissect_osi_options( PDU_TYPE_ESIS_ISH, len, tvb, offset, tree );
}
};
@@ -260,7 +260,7 @@ esis_dissect_redirect_pdu( u_char len, tvbuff_t *tvb, packet_info *pinfo,
offset += tmpl;
len -= ( tmpl + 1 );
}
- dissect_osi_options( PDU_TYPE_ESIS_RD, len, tvb, offset, pinfo, tree );
+ dissect_osi_options( PDU_TYPE_ESIS_RD, len, tvb, offset, tree );
}
}