CTDB: fix Copy-paste error (CID 11158596)

Change-Id: Ieaa70505f4b880569be6126166a71f32d84f79a8
Reviewed-on: https://code.wireshark.org/review/6470
Reviewed-by: Michael Mann <mmann78@netscape.net>
This commit is contained in:
Alexis La Goutte 2015-01-10 16:11:41 +01:00 committed by Michael Mann
parent 678051933d
commit e2fa5a516d
1 changed files with 1 additions and 1 deletions

View File

@ -860,7 +860,7 @@ dissect_ctdb_reply_control(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, pr
/* error */
if (errorlen) {
proto_tree_add_item(tree, hf_ctdb_error, tvb, offset, errorlen, endianess);
offset+=datalen;
offset+=errorlen;
}