summaryrefslogtreecommitdiff
path: root/source3/smbd/password.c
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2008-04-30 14:26:16 +0200
committerVolker Lendecke <vl@samba.org>2008-05-05 18:28:59 +0200
commit82d2f07dae5d69fc1635a4ed326a2af6632d8a97 (patch)
tree63060ff253b03a4eb824ba032c0ded58ff5fe98e /source3/smbd/password.c
parent71ff1ba2deddf8fa12b034518e92e0a461871388 (diff)
downloadsamba-82d2f07dae5d69fc1635a4ed326a2af6632d8a97.tar.gz
samba-82d2f07dae5d69fc1635a4ed326a2af6632d8a97.tar.bz2
samba-82d2f07dae5d69fc1635a4ed326a2af6632d8a97.zip
Remove "session_key" from "struct user_struct"
This one took a bit -- I hope I covered all data paths (This used to be commit 74c88a44422f88d6e2f2cdbfdfa0bafe0dbe06c4)
Diffstat (limited to 'source3/smbd/password.c')
-rw-r--r--source3/smbd/password.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/source3/smbd/password.c b/source3/smbd/password.c
index 6305180e6f..5e2e713d43 100644
--- a/source3/smbd/password.c
+++ b/source3/smbd/password.c
@@ -119,8 +119,6 @@ void invalidate_vuid(uint16 vuid)
session_yield(vuser);
- data_blob_free(&vuser->session_key);
-
if (vuser->auth_ntlmssp_state) {
auth_ntlmssp_end(&vuser->auth_ntlmssp_state);
}
@@ -252,7 +250,6 @@ static int register_homes_share(const char *username)
int register_existing_vuid(uint16 vuid,
auth_serversupplied_info *server_info,
- DATA_BLOB session_key,
DATA_BLOB response_blob,
const char *smb_name)
{
@@ -279,8 +276,6 @@ int register_existing_vuid(uint16 vuid,
fstrcpy(vuser->user.full_name,
pdb_get_fullname(server_info->sam_account));
- vuser->session_key = session_key;
-
DEBUG(10,("register_existing_vuid: (%u,%u) %s %s %s guest=%d\n",
(unsigned int)vuser->server_info->uid,
(unsigned int)vuser->server_info->gid,
@@ -328,7 +323,7 @@ int register_existing_vuid(uint16 vuid,
!srv_signing_started()) {
/* Try and turn on server signing on the first non-guest
* sessionsetup. */
- srv_set_signing(vuser->session_key, response_blob);
+ srv_set_signing(vuser->server_info->user_session_key, response_blob);
}
/* fill in the current_user_info struct */