NTLM print the whole string, not just half the string

from Matthieu Patou <mat@matws.net>

svn path=/trunk/; revision=40957
This commit is contained in:
Ronnie Sahlberg 2012-02-11 02:05:57 +00:00
parent 00cebab4aa
commit d0f5a1842b
1 changed files with 1 additions and 1 deletions

View File

@ -1289,7 +1289,7 @@ dissect_ntlmssp_target_info_list(tvbuff_t *tvb, proto_tree *tree,
if (content_length > 0) {
const gchar *text;
text = tvb_get_ephemeral_unicode_string(tvb, content_offset, content_length / 2, ENC_LITTLE_ENDIAN);
text = tvb_get_ephemeral_unicode_string(tvb, content_offset, content_length, ENC_LITTLE_ENDIAN);
proto_tree_add_string(target_info_tree, *hf_array_p[item_type],
tvb, content_offset, content_length, text);
proto_item_append_text(target_info_tf, ": %s", text);