summaryrefslogtreecommitdiff
path: root/source3/smbd/negprot.c
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2011-12-26 12:13:21 +1100
committerStefan Metzmacher <metze@samba.org>2012-01-05 17:17:28 +0100
commit1075efabc73ef9e890fdb7a53b15cabf467c6a9b (patch)
tree9650b14e43f168f062d26a4f61029d67f16725f7 /source3/smbd/negprot.c
parentc579b735d6e5ba5345ae8e26477ab13c2646c84a (diff)
downloadsamba-1075efabc73ef9e890fdb7a53b15cabf467c6a9b.tar.gz
samba-1075efabc73ef9e890fdb7a53b15cabf467c6a9b.tar.bz2
samba-1075efabc73ef9e890fdb7a53b15cabf467c6a9b.zip
s3-auth Add TALLOC_CTX * to auth_generic_prepare()
This makes the long term owner of this memory more clear. So far only the clear cases have been moved from NULL however. Andrew Bartlett Signed-off-by: Stefan Metzmacher <metze@samba.org>
Diffstat (limited to 'source3/smbd/negprot.c')
-rw-r--r--source3/smbd/negprot.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/smbd/negprot.c b/source3/smbd/negprot.c
index 2076b094a3..0a06e4a3d7 100644
--- a/source3/smbd/negprot.c
+++ b/source3/smbd/negprot.c
@@ -204,7 +204,8 @@ DATA_BLOB negprot_spnego(TALLOC_CTX *ctx, struct smbd_server_connection *sconn)
sconn->use_gensec_hook = false;
/* See if we can get an SPNEGO blob out of the gensec hook (if auth_samba4 is loaded) */
- status = auth_generic_prepare(sconn->remote_address,
+ status = auth_generic_prepare(talloc_tos(),
+ sconn->remote_address,
&auth_ntlmssp_state);
if (NT_STATUS_IS_OK(status)) {
status = auth_generic_start(auth_ntlmssp_state, GENSEC_OID_SPNEGO);