diff options
author | Andrew Bartlett <abartlet@samba.org> | 2003-03-23 13:18:05 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2003-03-23 13:18:05 +0000 |
commit | 8e2c74c6ee50aaf2f51a0456214ae3fc8e0c6613 (patch) | |
tree | 9da86937bf5068c90718cd746eda1dd4b82bb018 /source3 | |
parent | 67cf75843e0c37cff2988c762cb51ca7b483ed6a (diff) | |
download | samba-8e2c74c6ee50aaf2f51a0456214ae3fc8e0c6613.tar.gz samba-8e2c74c6ee50aaf2f51a0456214ae3fc8e0c6613.tar.bz2 samba-8e2c74c6ee50aaf2f51a0456214ae3fc8e0c6613.zip |
Fix compile.
(This used to be commit 6fbee12a8170e0bce4e94806105786b38160ada5)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/auth/auth_util.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/auth/auth_util.c b/source3/auth/auth_util.c index 70accec406..a3ca0b226f 100644 --- a/source3/auth/auth_util.c +++ b/source3/auth/auth_util.c @@ -1066,8 +1066,8 @@ NTSTATUS make_server_info_info3(TALLOC_CTX *mem_ctx, SAFE_FREE(all_group_SIDs); - memcpy((*server_info)->session_key, info3.user_sess_key, sizeof((*server_info)->session_key)/* 16 */); - memcpy((*server_info)->first_8_lm_hash, info3.padding, 8); + memcpy((*server_info)->session_key, info3->user_sess_key, sizeof((*server_info)->session_key)/* 16 */); + memcpy((*server_info)->first_8_lm_hash, info3->padding, 8); return NT_STATUS_OK; } |