diff options
author | Volker Lendecke <vl@samba.org> | 2010-09-25 15:31:29 -0700 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2010-09-26 01:12:37 +0200 |
commit | 242e3296108f513b286787ac12ea768b9c4ed954 (patch) | |
tree | 326069ebcf1a00836ba561173d829d4170a40504 /source3/include | |
parent | 2d8be31e880bcd1b7444ffd45295cc9948079b6f (diff) | |
download | samba-242e3296108f513b286787ac12ea768b9c4ed954.tar.gz samba-242e3296108f513b286787ac12ea768b9c4ed954.tar.bz2 samba-242e3296108f513b286787ac12ea768b9c4ed954.zip |
s3: Lift talloc_autofree_context() from make_auth_context_subsystem()
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index 849a062230..38ee2818ad 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -29,7 +29,8 @@ NTSTATUS smb_register_auth(int version, const char *name, auth_init_function init); bool load_auth_module(struct auth_context *auth_context, const char *module, auth_methods **ret) ; -NTSTATUS make_auth_context_subsystem(struct auth_context **auth_context) ; +NTSTATUS make_auth_context_subsystem(TALLOC_CTX *mem_ctx, + struct auth_context **auth_context); NTSTATUS make_auth_context_fixed(struct auth_context **auth_context, uchar chal[8]) ; /* The following definitions come from auth/auth_builtin.c */ |