summaryrefslogtreecommitdiff
path: root/epan
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2016-09-06 08:06:19 +0200
committerAnders Broman <a.broman58@gmail.com>2016-09-06 07:46:03 +0000
commit27d522dad3a052e75ea0c51c465d02cf9dcc8e96 (patch)
tree22381808686addbd1121a62851ec2998198d3a22 /epan
parent3b3c515ab25829a1c556c8bd490eac22e7964873 (diff)
downloadwireshark-27d522dad3a052e75ea0c51c465d02cf9dcc8e96.tar.gz
SMB2: Always display reserved field
Change-Id: Ic26603488cb020da3885f5bc97c65aae18fdf191 Reviewed-on: https://code.wireshark.org/review/17517 Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/packet-smb2.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/epan/dissectors/packet-smb2.c b/epan/dissectors/packet-smb2.c
index e9d83c37de..9ef95847b5 100644
--- a/epan/dissectors/packet-smb2.c
+++ b/epan/dissectors/packet-smb2.c
@@ -4266,6 +4266,7 @@ dissect_smb2_getinfo_buffer_quota(tvbuff_t *tvb, packet_info *pinfo _U_, proto_t
offset += 1;
/* reserved */
+ proto_tree_add_item(tree, hf_smb2_reserved, tvb, offset, 2, ENC_NA);
offset += 2;
proto_tree_add_item_ret_uint(tree, hf_smb2_qq_sidlist_len, tvb, offset, 4, ENC_LITTLE_ENDIAN, &sidlist_len);