From ebe4645322bd0845a99ede6c1ab704d12be07cc7 Mon Sep 17 00:00:00 2001 From: Ronnie Sahlberg Date: Fri, 25 Nov 2005 06:45:50 +0000 Subject: [PATCH] fix typo it is one in buffer and one out buffer in transaction request not two out buffers svn path=/trunk/; revision=16584 --- epan/dissectors/packet-smb2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/epan/dissectors/packet-smb2.c b/epan/dissectors/packet-smb2.c index 8eaf07fa85..51bd703c65 100644 --- a/epan/dissectors/packet-smb2.c +++ b/epan/dissectors/packet-smb2.c @@ -2007,7 +2007,7 @@ dissect_smb2_transaction_request(tvbuff_t *tvb, packet_info *pinfo, proto_tree * offset = dissect_smb2_olb_length_offset(tvb, offset, &o_olb, OLB_O_UINT32_S_UINT32, hf_smb2_transaction_out_data); /* in buffer offset/length */ - offset = dissect_smb2_olb_length_offset(tvb, offset, &i_olb, OLB_O_UINT32_S_UINT32, hf_smb2_transaction_out_data); + offset = dissect_smb2_olb_length_offset(tvb, offset, &i_olb, OLB_O_UINT32_S_UINT32, hf_smb2_transaction_in_data); /* some unknown bytes */ proto_tree_add_item(tree, hf_smb2_unknown, tvb, offset, 4, TRUE);