get tcpinfo from dissector data, not pinfo->private_data

svn path=/trunk/; revision=53044
This commit is contained in:
Michael Mann 2013-11-02 13:02:55 +00:00
parent 870346a66e
commit 26105b7739
1 changed files with 2 additions and 2 deletions

View File

@ -379,9 +379,9 @@ static void rlogin_display(rlogin_hash_entry_t *hash_info,
* Main dissection function
****************************************************************/
static int
dissect_rlogin(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void* data _U_)
dissect_rlogin(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void* data)
{
struct tcpinfo *tcpinfo = (struct tcpinfo *)pinfo->private_data;
struct tcpinfo *tcpinfo = (struct tcpinfo *)data;
conversation_t *conversation;
rlogin_hash_entry_t *hash_info;
guint length;