Dissect the last unknown item at the end of the NTLMv2 blob.
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>
Sun, 15 Aug 2004 03:24:47 +0000 (03:24 +0000)
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>
Sun, 15 Aug 2004 03:24:47 +0000 (03:24 +0000)
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@11740 f5534014-38df-0310-8fa8-9805f1628bb7

epan/dissectors/packet-ntlmssp.c

index 2fe3f2c607a5fe7099a83232a780b597104b2c2d..4cd831dc799aeea7425bdd80d2a8408acb8a11c8 100644 (file)
@@ -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;
 }