aboutsummaryrefslogtreecommitdiffstats
path: root/packet-ntlmssp.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2002-10-25 03:40:13 +0000
committerGuy Harris <guy@alum.mit.edu>2002-10-25 03:40:13 +0000
commit9b2845f8eae67df907a7b43c66eb3c5d18676a95 (patch)
tree47ada258f436279d303d761986d15de1648281c5 /packet-ntlmssp.c
parent72d59f05969e83dca408cfbc20daaec83940a37e (diff)
Fix the offset for the flags in an NTLMSSP_AUTH message.
svn path=/trunk/; revision=6504
Diffstat (limited to 'packet-ntlmssp.c')
-rw-r--r--packet-ntlmssp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-ntlmssp.c b/packet-ntlmssp.c
index ab67bd0d74..cc1b10728c 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.25 2002/09/24 00:40:42 tpot Exp $
+ * $Id: packet-ntlmssp.c,v 1.26 2002/10/25 03:40:13 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -530,7 +530,7 @@ dissect_ntlmssp_auth (tvbuff_t *tvb, int offset, proto_tree *ntlmssp_tree)
guint32 negotiate_flags;
gboolean unicode_strings = FALSE;
- negotiate_flags = tvb_get_letohl (tvb, offset+50);
+ negotiate_flags = tvb_get_letohl (tvb, offset+48);
if (negotiate_flags & NTLMSSP_NEGOTIATE_UNICODE)
unicode_strings = TRUE;