aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2012-06-26 13:02:13 +0000
committerBill Meier <wmeier@newsguy.com>2012-06-26 13:02:13 +0000
commit5efda930a65dafb5b29f7f7033b9a9cbc53b0b6c (patch)
tree30264ef8d9fd77e1a1c3e12961f48cb2067d3c32 /epan
parentcbb028bd4782f0d9ee95cc3a538fe7d485900985 (diff)
From Richard Sharpe:
I noticed some inconsistencies in the command naming. The following patch fixes those (so that they now match between SMB and SMB2): svn path=/trunk/; revision=43495
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/packet-smb2.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/epan/dissectors/packet-smb2.c b/epan/dissectors/packet-smb2.c
index 2b9a65f211..dc8e1e2373 100644
--- a/epan/dissectors/packet-smb2.c
+++ b/epan/dissectors/packet-smb2.c
@@ -5531,11 +5531,11 @@ dissect_smb2_break_response(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
/* names here are just until we find better names for these functions */
static const value_string smb2_cmd_vals[] = {
- { 0x00, "NegotiateProtocol" },
- { 0x01, "SessionSetup" },
- { 0x02, "SessionLogoff" },
- { 0x03, "TreeConnect" },
- { 0x04, "TreeDisconnect" },
+ { 0x00, "Negotiate Protocol" },
+ { 0x01, "Session Setup" },
+ { 0x02, "Session Logoff" },
+ { 0x03, "Tree Connect" },
+ { 0x04, "Tree Disconnect" },
{ 0x05, "Create" },
{ 0x06, "Close" },
{ 0x07, "Flush" },