aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2002-09-24 00:14:46 +0000
committerTim Potter <tpot@samba.org>2002-09-24 00:14:46 +0000
commit081a11b3d6dca72a5c4dcbf1445f8c1405639456 (patch)
tree78c37e2196f909f34c52ebf1b463c49655473e56
parentabf520e1cc8d699abbf66330b1a3566de93d918c (diff)
Add NTLMSSP message type to COL_INFO. This looks nice for NTLM over
HTTP, but NTLMSSP_CHALLENGE appears twice in a session setup response SPNEGO negTokenTarg, as the NTLMSSP message appears both in the responseToken and mechListMIC fields. svn path=/trunk/; revision=6328
-rw-r--r--packet-ntlmssp.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/packet-ntlmssp.c b/packet-ntlmssp.c
index 71c2be898b..778339159d 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.23 2002/09/23 22:55:32 tpot Exp $
+ * $Id: packet-ntlmssp.c,v 1.24 2002/09/24 00:14:46 tpot Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -619,6 +619,12 @@ dissect_ntlmssp(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *tree)
ntlmssp_message_type = tvb_get_letohl (tvb, offset);
offset += 4;
+ if (check_col(pinfo->cinfo, COL_INFO))
+ col_append_fstr(pinfo->cinfo, COL_INFO, ", %s",
+ val_to_str(ntlmssp_message_type,
+ ntlmssp_message_types,
+ "Unknown message type"));
+
/* Call the appropriate dissector based on the Message Type */
switch (ntlmssp_message_type) {