Changeset 478 for vendor/current/source3/auth
- Timestamp:
- Aug 2, 2010, 6:40:21 PM (15 years ago)
- Location:
- vendor/current/source3/auth
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
vendor/current/source3/auth/auth_sam.c
r414 r478 79 79 80 80 if (client_lm_hash || client_nt_hash) { 81 if (!nt_pw) { 82 return NT_STATUS_WRONG_PASSWORD; 83 } 81 84 *user_sess_key = data_blob_talloc(mem_ctx, NULL, 16); 82 85 if (!user_sess_key->data) { -
vendor/current/source3/auth/auth_util.c
r414 r478 469 469 client_domain, 470 470 get_remote_machine_name(), 471 lm_resp.data ? &lm_resp : NULL,472 nt_resp.data ? &nt_resp : NULL,471 lm_resp.data && (lm_resp.length > 0) ? &lm_resp : NULL, 472 nt_resp.data && (nt_resp.length > 0) ? &nt_resp : NULL, 473 473 NULL, NULL, NULL, 474 474 True);
Note:
See TracChangeset
for help on using the changeset viewer.