diff options
author | Luke Leighton <lkcl@samba.org> | 1997-10-25 17:38:37 +0000 |
---|---|---|
committer | Luke Leighton <lkcl@samba.org> | 1997-10-25 17:38:37 +0000 |
commit | 7e56b5a173df10acfad9c99d59211a0432b2a28e (patch) | |
tree | e1c16d566a59c36511687a3bb79131a177d10f2b /source3/lsaparse.c | |
parent | 54932934421e8a34d190604122bc22d676e4c7ea (diff) | |
download | samba-7e56b5a173df10acfad9c99d59211a0432b2a28e.tar.gz samba-7e56b5a173df10acfad9c99d59211a0432b2a28e.tar.bz2 samba-7e56b5a173df10acfad9c99d59211a0432b2a28e.zip |
added correct client-side credential generation / checking to the LSA SAM
Logon query. i think i even got the client-side checking of the response
credentials right!
(This used to be commit f14c111835e18e361468cc6a1666a02654afe743)
Diffstat (limited to 'source3/lsaparse.c')
-rw-r--r-- | source3/lsaparse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lsaparse.c b/source3/lsaparse.c index eab2069013..33813ce7af 100644 --- a/source3/lsaparse.c +++ b/source3/lsaparse.c @@ -434,7 +434,7 @@ char* lsa_io_user_info(BOOL io, LSA_USER_INFO *usr, char *q, char *base, int ali DBG_RW_IVAL("buffer_groups ", depth, base, io, q, usr->buffer_groups); q += 4; /* undocumented buffer pointer to groups. */ DBG_RW_IVAL("user_flgs ", depth, base, io, q, usr->user_flgs ); q += 4; /* user flags */ - DBG_RW_PCVAL("sess_key ", depth, base, io, q, usr->sess_key, 16); q += 16; /* unused user session key */ + DBG_RW_PCVAL("user_sess_key", depth, base, io, q, usr->user_sess_key, 16); q += 16; /* unused user session key */ q = smb_io_unihdr(io, &(usr->hdr_logon_srv), q, base, align, depth); /* logon server unicode string header */ q = smb_io_unihdr(io, &(usr->hdr_logon_dom), q, base, align, depth); /* logon domain unicode string header */ |