aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2002-09-23 22:55:32 +0000
committerTim Potter <tpot@samba.org>2002-09-23 22:55:32 +0000
commitabf520e1cc8d699abbf66330b1a3566de93d918c (patch)
treebc71fdd115878657ea12bf11b8699d24e17cc793
parente8acbb4ebf10c484cab9e882fb5b364595a8c057 (diff)
downloadwireshark-abf520e1cc8d699abbf66330b1a3566de93d918c.tar.gz
wireshark-abf520e1cc8d699abbf66330b1a3566de93d918c.tar.bz2
wireshark-abf520e1cc8d699abbf66330b1a3566de93d918c.zip
Add an entry to the protocol tree for NULL strings in
dissect_ntlmssp_strings(). It seems that most versions of IE don't set the workstation name and domain name in the NTLMSSP_NEGOTIATE message when doing NTLM over HTTP. svn path=/trunk/; revision=6327
-rw-r--r--packet-ntlmssp.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/packet-ntlmssp.c b/packet-ntlmssp.c
index e7405a48c6..71c2be898b 100644
--- a/packet-ntlmssp.c
+++ b/packet-ntlmssp.c
@@ -2,7 +2,7 @@
* Routines for NTLM Secure Service Provider
* Devin Heitmueller <dheitmueller@netilla.com>
*
- * $Id: packet-ntlmssp.c,v 1.22 2002/09/18 08:36:25 tpot Exp $
+ * $Id: packet-ntlmssp.c,v 1.23 2002/09/23 22:55:32 tpot Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -187,6 +187,9 @@ dissect_ntlmssp_string (tvbuff_t *tvb, int offset,
if (0 == string_length) {
*end = (string_offset > offset+8 ? string_offset : offset+8);
+ if (ntlmssp_tree)
+ proto_tree_add_string(ntlmssp_tree, string_hf, tvb,
+ offset, 8, "NULL");
return offset+8;
}