diff options
author | Andrew Bartlett <abartlet@samba.org> | 2011-12-26 12:13:21 +1100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2012-01-05 17:17:28 +0100 |
commit | 1075efabc73ef9e890fdb7a53b15cabf467c6a9b (patch) | |
tree | 9650b14e43f168f062d26a4f61029d67f16725f7 /source3/smbd/seal.c | |
parent | c579b735d6e5ba5345ae8e26477ab13c2646c84a (diff) | |
download | samba-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/seal.c')
-rw-r--r-- | source3/smbd/seal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/seal.c b/source3/smbd/seal.c index be5f9506d0..a609a3bad3 100644 --- a/source3/smbd/seal.c +++ b/source3/smbd/seal.c @@ -80,7 +80,7 @@ static NTSTATUS make_auth_ntlmssp(const struct tsocket_address *remote_address, struct smb_trans_enc_state *es) { struct auth_generic_state *auth_ntlmssp_state; - NTSTATUS status = auth_generic_prepare(remote_address, + NTSTATUS status = auth_generic_prepare(NULL, remote_address, &auth_ntlmssp_state); if (!NT_STATUS_IS_OK(status)) { return nt_status_squash(status); |