aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ntlmssp.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2004-08-15 03:24:47 +0000
committerGuy Harris <guy@alum.mit.edu>2004-08-15 03:24:47 +0000
commita626d0c168282a5c80c083259a780a9e1b4e43be (patch)
treeea592e72246472d0cbcde53a80ada0f3fb4ee10b /epan/dissectors/packet-ntlmssp.c
parent3bce5b4b5f4fb606ae1d15b3bb8189e30389f5b0 (diff)
Dissect the last unknown item at the end of the NTLMv2 blob.
svn path=/trunk/; revision=11740
Diffstat (limited to 'epan/dissectors/packet-ntlmssp.c')
-rw-r--r--epan/dissectors/packet-ntlmssp.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/epan/dissectors/packet-ntlmssp.c b/epan/dissectors/packet-ntlmssp.c
index 2fe3f2c607..4cd831dc79 100644
--- a/epan/dissectors/packet-ntlmssp.c
+++ b/epan/dissectors/packet-ntlmssp.c
@@ -718,7 +718,13 @@ dissect_ntlmv2_response(tvbuff_t *tvb, proto_tree *tree, int offset, int len)
if (name_type == 0) /* End of list */
break;
- };
+ }
+
+ proto_tree_add_item(
+ ntlmv2_tree, hf_ntlmssp_ntlmv2_response_unknown, tvb,
+ offset, 4, TRUE);
+
+ offset += 4;
return offset;
}