aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-smb2.c
diff options
context:
space:
mode:
authorJeff Morriss <jeff.morriss.ws@gmail.com>2013-07-31 13:30:29 +0000
committerJeff Morriss <jeff.morriss.ws@gmail.com>2013-07-31 13:30:29 +0000
commitfbbeebe054693eca609fa3b67fa292d45f61af5a (patch)
treed2f0ed6693f2ee246beb691a33c6f699e8001292 /epan/dissectors/packet-smb2.c
parent5b485c3c0a23e4d586666be386b7d73c19ac9901 (diff)
From Richard Sharpe:
It's not Command Sequence Number but Message ID. https://www.wireshark.org/lists/wireshark-dev/201307/msg00242.html svn path=/trunk/; revision=51066
Diffstat (limited to 'epan/dissectors/packet-smb2.c')
-rw-r--r--epan/dissectors/packet-smb2.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/epan/dissectors/packet-smb2.c b/epan/dissectors/packet-smb2.c
index 7cd4446877..b5784b794d 100644
--- a/epan/dissectors/packet-smb2.c
+++ b/epan/dissectors/packet-smb2.c
@@ -1941,8 +1941,8 @@ dissect_smb2_file_full_ea_info(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree
FALSE, &length, TRUE, TRUE, &bc);
/*
* We put the data here ...
- */
- proto_tree_add_item(ea_tree, hf_smb2_ea_data, tvb,
+ */
+ proto_tree_add_item(ea_tree, hf_smb2_ea_data, tvb,
offset, length, ENC_NA);
}
offset += ea_data_len;
@@ -7100,8 +7100,8 @@ proto_register_smb2(void)
{ "NT Status", "smb2.nt_status", FT_UINT32, BASE_HEX,
VALS(NT_errors), 0, "NT Status code", HFILL }},
{ &hf_smb2_seqnum,
- { "Command Sequence Number", "smb2.seq_num", FT_INT64, BASE_DEC,
- NULL, 0, "SMB2 Command Sequence Number", HFILL }},
+ { "Message ID", "smb2.msg_id", FT_INT64, BASE_DEC,
+ NULL, 0, "SMB2 Messsage ID", HFILL }},
{ &hf_smb2_tid,
{ "Tree Id", "smb2.tid", FT_UINT32, BASE_HEX,
NULL, 0, "SMB2 Tree Id", HFILL }},