aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2007-05-26 18:59:56 +0000
committerGuy Harris <guy@alum.mit.edu>2007-05-26 18:59:56 +0000
commit2be10fe10b5ae3c1a405b6a5f435d9c5dd38523f (patch)
tree0a861dba8cd1889f8d1ef12573371fad0fb1ab41 /plugins
parent62955d62fe70b3f1b8d8bf2d330fbc42893ca1ff (diff)
Get rid of unused parameter.
svn path=/trunk/; revision=21954
Diffstat (limited to 'plugins')
-rw-r--r--plugins/wimax/msg_dreg.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/wimax/msg_dreg.c b/plugins/wimax/msg_dreg.c
index dbbc268bd5..a3bb32752f 100644
--- a/plugins/wimax/msg_dreg.c
+++ b/plugins/wimax/msg_dreg.c
@@ -46,7 +46,7 @@ extern gint man_ofdma;
extern gboolean include_cor2_changes;
/* Forward reference */
-static void dissect_dreg_tlv(proto_tree *dreg_tree, gint tlv_type, tvbuff_t *tvb, guint tlv_offset, guint tlv_len, gint dreg_decoder);
+static void dissect_dreg_tlv(proto_tree *dreg_tree, gint tlv_type, tvbuff_t *tvb, guint tlv_offset, guint tlv_len);
void dissect_mac_mgmt_msg_dreg_req_decoder(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree);
void dissect_mac_mgmt_msg_dreg_cmd_decoder(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree);
@@ -328,7 +328,7 @@ static hf_register_info hf[] =
/* Decode sub-TLV's of either DREG-REQ or DREG-CMD. */
-static void dissect_dreg_tlv(proto_tree *dreg_tree, gint tlv_type, tvbuff_t *tvb, guint tlv_offset, guint tlv_len, gint dreg_decoder)
+static void dissect_dreg_tlv(proto_tree *dreg_tree, gint tlv_type, tvbuff_t *tvb, guint tlv_offset, guint tlv_len)
{
guint tvb_len;
/*guint tlv_len;*/
@@ -469,7 +469,7 @@ void dissect_mac_mgmt_msg_dreg_req_decoder(tvbuff_t *tvb, packet_info *pinfo, pr
default:
/* Decode DREG-REQ sub-TLV's */
tlv_tree = add_protocol_subtree(&tlv_info, ett_mac_mgmt_msg_dreg_decoder, dreg_req_tree, proto_mac_mgmt_msg_dreg_req_decoder, tvb, tlv_offset, tlv_len, "DREG-REQ sub-TLV's (%u byte(s))", tlv_len);
- dissect_dreg_tlv(tlv_tree, tlv_type, tvb, tlv_offset, tlv_len, proto_mac_mgmt_msg_dreg_req_decoder);
+ dissect_dreg_tlv(tlv_tree, tlv_type, tvb, tlv_offset, tlv_len);
break;
}
@@ -558,7 +558,7 @@ void dissect_mac_mgmt_msg_dreg_cmd_decoder(tvbuff_t *tvb, packet_info *pinfo, pr
default:
/* Decode DREG-CMD sub-TLV's */
tlv_tree = add_protocol_subtree(&tlv_info, ett_mac_mgmt_msg_dreg_decoder, dreg_cmd_tree, proto_mac_mgmt_msg_dreg_cmd_decoder, tvb, tlv_offset, tlv_len, "DREG-CMD sub-TLV's (%u byte(s))", tlv_len);
- dissect_dreg_tlv(tlv_tree, tlv_type, tvb, tlv_offset, tlv_len, proto_mac_mgmt_msg_dreg_cmd_decoder);
+ dissect_dreg_tlv(tlv_tree, tlv_type, tvb, tlv_offset, tlv_len);
break;
}