diff options
author | Guy Harris <guy@alum.mit.edu> | 2002-04-30 23:56:58 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2002-04-30 23:56:58 +0000 |
commit | 56ddb63961e83f1ab08b19d830e8ead725416070 (patch) | |
tree | 8c29f502c726c8068ab4c811f033add2ead1b0fe /packet-osi-options.c | |
parent | a06dd1c72499ef7a9de7b5c0e4f986e90fd28592 (diff) | |
download | wireshark-56ddb63961e83f1ab08b19d830e8ead725416070.tar.gz wireshark-56ddb63961e83f1ab08b19d830e8ead725416070.tar.bz2 wireshark-56ddb63961e83f1ab08b19d830e8ead725416070.zip |
From Joerg Mayer: get rid of unused PDU type argument to
"dissect_osi_options()".
svn path=/trunk/; revision=5318
Diffstat (limited to 'packet-osi-options.c')
-rw-r--r-- | packet-osi-options.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/packet-osi-options.c b/packet-osi-options.c index 516703ec61..0f950a9e32 100644 --- a/packet-osi-options.c +++ b/packet-osi-options.c @@ -5,7 +5,7 @@ * ISO 10589 ISIS (Intradomain Routing Information Exchange Protocol) * ISO 9542 ESIS (End System To Intermediate System Routing Exchange Protocol) * - * $Id: packet-osi-options.c,v 1.11 2002/04/14 23:04:03 guy Exp $ + * $Id: packet-osi-options.c,v 1.12 2002/04/30 23:56:58 guy Exp $ * Ralf Schneider <Ralf.Schneider@t-online.de> * * Ethereal - Network traffic analyzer @@ -338,7 +338,6 @@ dissect_option_rfd( const u_char error, const u_char field, u_char offset, * main esis tree data and call the sub-protocols as needed. * * Input: - * u_char : PDU type to check if option is allowed or not * u_char : length of option section * tvbuff_t * : tvbuff containing packet data * int : offset into packet where we are (packet_data[offset]== start @@ -349,7 +348,7 @@ dissect_option_rfd( const u_char error, const u_char field, u_char offset, * void, but we will add to the proto_tree if it is not NULL. */ void -dissect_osi_options( u_char pdu_type, u_char opt_len, tvbuff_t *tvb, +dissect_osi_options( u_char opt_len, tvbuff_t *tvb, int offset, proto_tree *tree) { proto_item *ti; proto_tree *osi_option_tree = NULL; |