mirror of
https://github.com/samba-team/samba.git
synced 2024-12-24 21:34:56 +03:00
r1142: I think this should fix the interactive logins for tridge - don't take
sizeof() a pointer...
Andrew Bartlett
(This used to be commit c1019e6df6
)
This commit is contained in:
parent
7ae1735798
commit
0387684df6
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user