summaryrefslogtreecommitdiff
path: root/source3/smbd/negprot.c
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2010-09-25 15:31:29 -0700
committerVolker Lendecke <vl@samba.org>2010-09-26 01:12:37 +0200
commit242e3296108f513b286787ac12ea768b9c4ed954 (patch)
tree326069ebcf1a00836ba561173d829d4170a40504 /source3/smbd/negprot.c
parent2d8be31e880bcd1b7444ffd45295cc9948079b6f (diff)
downloadsamba-242e3296108f513b286787ac12ea768b9c4ed954.tar.gz
samba-242e3296108f513b286787ac12ea768b9c4ed954.tar.bz2
samba-242e3296108f513b286787ac12ea768b9c4ed954.zip
s3: Lift talloc_autofree_context() from make_auth_context_subsystem()
Diffstat (limited to 'source3/smbd/negprot.c')
-rw-r--r--source3/smbd/negprot.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/negprot.c b/source3/smbd/negprot.c
index 463e1c8083..51f2d0c1de 100644
--- a/source3/smbd/negprot.c
+++ b/source3/smbd/negprot.c
@@ -38,7 +38,7 @@ static void get_challenge(struct smbd_server_connection *sconn, uint8 buff[8])
DEBUG(10, ("get challenge: creating negprot_global_auth_context\n"));
nt_status = make_auth_context_subsystem(
- &sconn->smb1.negprot.auth_context);
+ sconn, &sconn->smb1.negprot.auth_context);
if (!NT_STATUS_IS_OK(nt_status)) {
DEBUG(0, ("make_auth_context_subsystem returned %s",
nt_errstr(nt_status)));