aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Sharpe <sharpe@ns.aus.com>2002-09-11 17:47:32 +0000
committerRichard Sharpe <sharpe@ns.aus.com>2002-09-11 17:47:32 +0000
commit2ee94441124bdf5a3160173b9eb01abf8d2b1656 (patch)
tree0e2d4343ce71e26753ca7787146897af06c06429
parent356cc5009e03215762aee715b60fa3176e3f7083 (diff)
Small fix from Jim McDonough to fix the order of domain and workstation name
in a negotiate. svn path=/trunk/; revision=6276
-rw-r--r--packet-ntlmssp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/packet-ntlmssp.c b/packet-ntlmssp.c
index 56afd296b5..9c6a27f702 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.20 2002/09/11 16:45:07 sharpe Exp $
+ * $Id: packet-ntlmssp.c,v 1.21 2002/09/11 17:47:32 sharpe Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -386,10 +386,10 @@ dissect_ntlmssp_negotiate (tvbuff_t *tvb, int offset,
negotiate_flags);
offset = dissect_ntlmssp_string(tvb, offset, ntlmssp_tree, FALSE,
- hf_ntlmssp_negotiate_workstation,
+ hf_ntlmssp_negotiate_domain,
&workstation_end);
offset = dissect_ntlmssp_string(tvb, offset, ntlmssp_tree, FALSE,
- hf_ntlmssp_negotiate_domain,
+ hf_ntlmssp_negotiate_workstation,
&domain_end);
return MAX(workstation_end, domain_end);