aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2009-11-09 15:43:54 +0000
committerStig Bjørlykke <stig@bjorlykke.org>2009-11-09 15:43:54 +0000
commit2c01893e7203def10973cbe4126736125c363d38 (patch)
treefa9b78ee876f0d59510174af5875f29e9d651f85
parentab3e4adf8b550fc73be43d536dbe5dc042d032c6 (diff)
downloadwireshark-2c01893e7203def10973cbe4126736125c363d38.tar.gz
wireshark-2c01893e7203def10973cbe4126736125c363d38.tar.bz2
wireshark-2c01893e7203def10973cbe4126736125c363d38.zip
Conversation is unused in dissect_rtmpt_tcp().
svn path=/trunk/; revision=30905
-rw-r--r--epan/dissectors/packet-rtmpt.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/epan/dissectors/packet-rtmpt.c b/epan/dissectors/packet-rtmpt.c
index ced02bc46f..155c6162fd 100644
--- a/epan/dissectors/packet-rtmpt.c
+++ b/epan/dissectors/packet-rtmpt.c
@@ -742,14 +742,15 @@ get_rtmpt_pdu_len(packet_info *pinfo _U_, tvbuff_t *tvb, int offset)
static void
dissect_rtmpt_tcp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
{
+#if 0
conversation_t * conversation;
- conversation = NULL;
conversation = find_conversation(pinfo->fd->num, &pinfo->src, &pinfo->dst, pinfo->ptype, pinfo->srcport, pinfo->destport, 0);
if (conversation == NULL)
{
conversation = conversation_new(pinfo->fd->num, &pinfo->src, &pinfo->dst, pinfo->ptype, pinfo->srcport, pinfo->destport, 0);
}
+#endif
tcp_dissect_pdus(tvb, pinfo, tree, 1, 1, get_rtmpt_pdu_len, dissect_rtmpt);
}