Fix dissection of MBIM Extended Functional Descriptor MTU

svn path=/trunk/; revision=53312
This commit is contained in:
Pascal Quantin 2013-11-14 09:43:32 +00:00
parent a7e417bf24
commit 488cf801a2
1 changed files with 1 additions and 1 deletions

View File

@ -4411,7 +4411,7 @@ dissect_mbim_descriptor(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *tree,
} else {
proto_tree_add_item(tree, hf_mbim_descriptor_extended_version, tvb, 3, 2, ENC_LITTLE_ENDIAN);
proto_tree_add_item(tree, hf_mbim_descriptor_max_outstanding_command_messages, tvb, 5, 1, ENC_NA);
proto_tree_add_item(tree, hf_mbim_descriptor_mtu, tvb, 3, 2, ENC_LITTLE_ENDIAN);
proto_tree_add_item(tree, hf_mbim_descriptor_mtu, tvb, 6, 2, ENC_LITTLE_ENDIAN);
}
return length;