aboutsummaryrefslogtreecommitdiffstats
path: root/packet-aim.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2004-03-23 07:39:06 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2004-03-23 07:39:06 +0000
commit05f18d26137d1aeafb2fbe4bfc764dcd4a084a06 (patch)
tree2d3c8f6b961a5e0a7dd894f945f7c78eeec13b5d /packet-aim.c
parent71064677a8d92040ae72a19060588b4807d87e76 (diff)
Get rid of a no-longer-used argument.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@10453 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-aim.c')
-rw-r--r--packet-aim.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/packet-aim.c b/packet-aim.c
index 053be1f88d..ed6427d464 100644
--- a/packet-aim.c
+++ b/packet-aim.c
@@ -3,7 +3,7 @@
* Copyright 2000, Ralf Hoelzer <ralf@well.com>
* Copyright 2004, Jelmer Vernooij <jelmer@samba.org>
*
- * $Id: packet-aim.c,v 1.35 2004/03/23 07:23:43 guy Exp $
+ * $Id: packet-aim.c,v 1.36 2004/03/23 07:39:06 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -252,7 +252,7 @@ static void dissect_aim_pdu(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
static void dissect_aim_newconn(tvbuff_t *tvb, packet_info *pinfo, int offset, proto_tree *tree);
static void dissect_aim_snac(tvbuff_t *tvb, packet_info *pinfo,
- int offset, proto_tree *tree, proto_tree *root_tree);
+ int offset, proto_tree *tree);
static void dissect_aim_flap_err(tvbuff_t *tvb, packet_info *pinfo,
int offset, proto_tree *tree);
static void dissect_aim_keep_alive(tvbuff_t *tvb, packet_info *pinfo,
@@ -373,7 +373,7 @@ static void dissect_aim_pdu(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
dissect_aim_newconn(tvb, pinfo, offset, aim_tree);
break;
case CHANNEL_SNAC_DATA:
- dissect_aim_snac(tvb, pinfo, offset, aim_tree, tree);
+ dissect_aim_snac(tvb, pinfo, offset, aim_tree);
break;
case CHANNEL_FLAP_ERR:
dissect_aim_flap_err(tvb, pinfo, offset, aim_tree);
@@ -549,7 +549,7 @@ int dissect_aim_snac_error(tvbuff_t *tvb, packet_info *pinfo,
}
static void dissect_aim_snac(tvbuff_t *tvb, packet_info *pinfo,
- int offset, proto_tree *aim_tree, proto_tree *root_tree)
+ int offset, proto_tree *aim_tree)
{
guint16 family;
guint16 subtype;