diff options
author | Guy Harris <guy@alum.mit.edu> | 2002-04-07 21:54:48 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2002-04-07 21:54:48 +0000 |
commit | 7efa2e494183ce99daf6852550eb03b8683fdfd5 (patch) | |
tree | 66b52e9034aba4a08b1c6fd243a4c2c79828ce66 /packet-esis.c | |
parent | 4fb8509ac20962061783e323d0f9d99f400203f0 (diff) | |
download | wireshark-7efa2e494183ce99daf6852550eb03b8683fdfd5.tar.gz wireshark-7efa2e494183ce99daf6852550eb03b8683fdfd5.tar.bz2 wireshark-7efa2e494183ce99daf6852550eb03b8683fdfd5.zip |
Get rid of the unused "pinfo" argument to "dissect_osi_options()".
svn path=/trunk/; revision=5110
Diffstat (limited to 'packet-esis.c')
-rw-r--r-- | packet-esis.c | 8 |
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 ); } } |