diff options
author | Andrew Bartlett <abartlet@samba.org> | 2004-06-14 12:31:04 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:56:40 -0500 |
commit | 0387684df699d9efe5c35637ff97d234bb18e8db (patch) | |
tree | 1bbd38e23023b03ac4ef21771268af9c31988fe5 /source4/auth/auth_util.c | |
parent | 7ae1735798250a7625dfd8d005c08cc8302f400f (diff) | |
download | samba-0387684df699d9efe5c35637ff97d234bb18e8db.tar.gz samba-0387684df699d9efe5c35637ff97d234bb18e8db.tar.bz2 samba-0387684df699d9efe5c35637ff97d234bb18e8db.zip |
r1142: I think this should fix the interactive logins for tridge - don't take
sizeof() a pointer...
Andrew Bartlett
(This used to be commit c1019e6df6aa4fcce7dc2ccbd404a4254ab5d1fb)
Diffstat (limited to 'source4/auth/auth_util.c')
-rw-r--r-- | source4/auth/auth_util.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source4/auth/auth_util.c b/source4/auth/auth_util.c index 24a419586d..ba13fceab3 100644 --- a/source4/auth/auth_util.c +++ b/source4/auth/auth_util.c @@ -208,13 +208,13 @@ NTSTATUS make_user_info_netlogon_interactive(struct auth_usersupplied_info **use local_lm_blob = data_blob(local_lm_response, sizeof(local_lm_response)); - lm_interactive_blob = data_blob(lm_interactive_password, - sizeof(lm_interactive_password)); + lm_interactive_blob = data_blob(lm_interactive_password->hash, + sizeof(lm_interactive_password->hash)); local_nt_blob = data_blob(local_nt_response, sizeof(local_nt_response)); - nt_interactive_blob = data_blob(nt_interactive_password, - sizeof(nt_interactive_password)); + nt_interactive_blob = data_blob(nt_interactive_password->hash, + sizeof(nt_interactive_password->hash)); nt_status = make_user_info_map(user_info, smb_name, client_domain, |