summaryrefslogtreecommitdiff
path: root/source3/smbd/sesssetup.c
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2011-08-02 08:53:10 +1000
committerAndrew Bartlett <abartlet@samba.org>2011-08-03 18:48:05 +1000
commit8fca9741fe7fca3a899fdff7ab667de1364f0ea9 (patch)
tree77eeffd551e12a3386d854f10a5426fb2dbdaf5e /source3/smbd/sesssetup.c
parent4379738e8516f54d7599e87fd9e6a9ec80680dd0 (diff)
downloadsamba-8fca9741fe7fca3a899fdff7ab667de1364f0ea9.tar.gz
samba-8fca9741fe7fca3a899fdff7ab667de1364f0ea9.tar.bz2
samba-8fca9741fe7fca3a899fdff7ab667de1364f0ea9.zip
s3-auth rename auth_ntlmssp_steal_session_info()
There is no longer any theft of memory as the underlying routines now produce a new auth_session_info for this caller, allocating it on the supplied memory context. Andrew Bartlett
Diffstat (limited to 'source3/smbd/sesssetup.c')
-rw-r--r--source3/smbd/sesssetup.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/sesssetup.c b/source3/smbd/sesssetup.c
index a3440a62f6..8b133b4a54 100644
--- a/source3/smbd/sesssetup.c
+++ b/source3/smbd/sesssetup.c
@@ -431,7 +431,7 @@ static void reply_spnego_ntlmssp(struct smb_request *req,
struct smbd_server_connection *sconn = req->sconn;
if (NT_STATUS_IS_OK(nt_status)) {
- nt_status = auth_ntlmssp_steal_session_info(talloc_tos(),
+ nt_status = auth_ntlmssp_session_info(talloc_tos(),
(*auth_ntlmssp_state), &session_info);
}