aboutsummaryrefslogtreecommitdiffstats
path: root/packet-rmi.c
diff options
context:
space:
mode:
authorJörg Mayer <jmayer@loplof.de>2003-03-09 03:19:03 +0000
committerJörg Mayer <jmayer@loplof.de>2003-03-09 03:19:03 +0000
commit52487949b5c2b18a757cb27e445d5764e61fa8f2 (patch)
tree2d08d50cf6bd4ccfd80337ff00f95bc376ee9d70 /packet-rmi.c
parent628be571bd75a9cadf8b1c5da416d74c57108202 (diff)
Remove used parameter pinfo from dissect_ser
svn path=/trunk/; revision=7328
Diffstat (limited to 'packet-rmi.c')
-rw-r--r--packet-rmi.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/packet-rmi.c b/packet-rmi.c
index 70e85aef7c..ed2474de1f 100644
--- a/packet-rmi.c
+++ b/packet-rmi.c
@@ -2,7 +2,7 @@
* Routines for java rmiregistry dissection
* Copyright 2002, Michael Stiller <ms@2scale.net>
*
- * $Id: packet-rmi.c,v 1.6 2003/02/05 06:16:32 guy Exp $
+ * $Id: packet-rmi.c,v 1.7 2003/03/09 03:19:03 jmayer Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -39,7 +39,7 @@
#include "packet-rmi.h"
static void
-dissect_ser(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree);
+dissect_ser(tvbuff_t *tvb, proto_tree *tree);
static rmi_type
get_rmi_type(const guchar *data, int datalen);
@@ -222,7 +222,7 @@ dissect_rmi(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
proto_tree_add_text(rmi_tree, tvb, offset + 1, -1,
"Serialization Data");
next_tvb = tvb_new_subset(tvb, offset + 1, -1, -1);
- dissect_ser(next_tvb, pinfo, tree);
+ dissect_ser(next_tvb, tree);
}
break;
case RMI_OUTPUTMESSAGE:
@@ -234,7 +234,7 @@ dissect_rmi(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
"Serialization Data");
/* XXX */
next_tvb = tvb_new_subset(tvb, offset + 1, -1, -1);
- dissect_ser(next_tvb, pinfo, tree);
+ dissect_ser(next_tvb, tree);
}
if(message == RMI_OUTPUTSTREAM_MESSAGE_DGCACK) {
proto_tree_add_text(rmi_tree, tvb, offset + 1, -1,
@@ -242,7 +242,7 @@ dissect_rmi(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
}
break;
case SERIALIZATION_DATA:
- dissect_ser(tvb, pinfo, tree);
+ dissect_ser(tvb, tree);
break;
default:
break;
@@ -251,7 +251,7 @@ dissect_rmi(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
}
static void
-dissect_ser(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
+dissect_ser(tvbuff_t *tvb, proto_tree *tree)
{
proto_item *ti;
proto_tree *ser_tree;