diff options
author | Richard Sharpe <sharpe@ns.aus.com> | 2002-09-11 17:47:32 +0000 |
---|---|---|
committer | Richard Sharpe <sharpe@ns.aus.com> | 2002-09-11 17:47:32 +0000 |
commit | 2ee94441124bdf5a3160173b9eb01abf8d2b1656 (patch) | |
tree | 0e2d4343ce71e26753ca7787146897af06c06429 /packet-ntlmssp.c | |
parent | 356cc5009e03215762aee715b60fa3176e3f7083 (diff) | |
download | wireshark-2ee94441124bdf5a3160173b9eb01abf8d2b1656.tar.gz wireshark-2ee94441124bdf5a3160173b9eb01abf8d2b1656.tar.bz2 wireshark-2ee94441124bdf5a3160173b9eb01abf8d2b1656.zip |
Small fix from Jim McDonough to fix the order of domain and workstation name
in a negotiate.
svn path=/trunk/; revision=6276
Diffstat (limited to 'packet-ntlmssp.c')
-rw-r--r-- | packet-ntlmssp.c | 6 |
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); |