aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2005-04-01 09:19:29 +0000
committerGuy Harris <guy@alum.mit.edu>2005-04-01 09:19:29 +0000
commitbed220604dff5be43fc6f8c9cf75397a88d228e7 (patch)
tree1f6b36bf454b53c7b990c5f56d4dabf4f138882d /epan
parent80c1907a3650bd7ce3486deaf8bfe03998cc53cf (diff)
"get_conv_info()" doesn't use the tvbuff passed to it, so don't pass it
one. svn path=/trunk/; revision=13994
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/packet-rtp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/dissectors/packet-rtp.c b/epan/dissectors/packet-rtp.c
index 17b6a86117..7a416fb75d 100644
--- a/epan/dissectors/packet-rtp.c
+++ b/epan/dissectors/packet-rtp.c
@@ -126,7 +126,7 @@ static gboolean dissect_rtp_heur( tvbuff_t *tvb, packet_info *pinfo,
static void dissect_rtp( tvbuff_t *tvb, packet_info *pinfo,
proto_tree *tree );
static void show_setup_info(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree);
-static void get_conv_info(tvbuff_t *tvb, packet_info *pinfo);
+static void get_conv_info(packet_info *pinfo);
/* Preferences bool to control whether or not setup info should be shown */
static gboolean global_rtp_show_setup_info = TRUE;
@@ -542,7 +542,7 @@ dissect_rtp( tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree )
}
/* Look for conv and add to the frame if found */
- get_conv_info(tvb, pinfo);
+ get_conv_info(pinfo);
if ( check_col( pinfo->cinfo, COL_PROTOCOL ) ) {
col_set_str( pinfo->cinfo, COL_PROTOCOL, "RTP" );
@@ -746,7 +746,7 @@ dissect_rtp( tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree )
}
/* Look for conversation info */
-static void get_conv_info(tvbuff_t *tvb, packet_info *pinfo)
+static void get_conv_info(packet_info *pinfo)
{
/* Conversation and current data */
conversation_t *p_conv = NULL;