aboutsummaryrefslogtreecommitdiffstats
path: root/packet-osi-options.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2002-04-07 21:54:48 +0000
committerGuy Harris <guy@alum.mit.edu>2002-04-07 21:54:48 +0000
commit7efa2e494183ce99daf6852550eb03b8683fdfd5 (patch)
tree66b52e9034aba4a08b1c6fd243a4c2c79828ce66 /packet-osi-options.c
parent4fb8509ac20962061783e323d0f9d99f400203f0 (diff)
Get rid of the unused "pinfo" argument to "dissect_osi_options()".
svn path=/trunk/; revision=5110
Diffstat (limited to 'packet-osi-options.c')
-rw-r--r--packet-osi-options.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/packet-osi-options.c b/packet-osi-options.c
index 43640850ec..63d60b3371 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.9 2002/01/21 07:36:38 guy Exp $
+ * $Id: packet-osi-options.c,v 1.10 2002/04/07 21:54:48 guy Exp $
* Ralf Schneider <Ralf.Schneider@t-online.de>
*
* Ethereal - Network traffic analyzer
@@ -25,8 +25,6 @@
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- *
- *
*/
#ifdef HAVE_CONFIG_H
@@ -342,10 +340,9 @@ dissect_option_rfd( const u_char error, const u_char field, u_char offset,
* Input:
* u_char : PDU type to check if option is allowed or not
* u_char : length of option section
- * u_char * : packet data
+ * tvbuff_t * : tvbuff containing packet data
* int : offset into packet where we are (packet_data[offset]== start
* of what we care about)
- * frame_data * : frame data (whole packet with extra info)
* proto_tree * : tree of display data. May be NULL.
*
* Output:
@@ -353,7 +350,7 @@ dissect_option_rfd( const u_char error, const u_char field, u_char offset,
*/
void
dissect_osi_options( u_char pdu_type, u_char opt_len, tvbuff_t *tvb,
- int offset, packet_info *pinfo, proto_tree *tree) {
+ int offset, proto_tree *tree) {
proto_item *ti;
proto_tree *osi_option_tree = NULL;
u_char parm_len = 0;