summaryrefslogtreecommitdiff
path: root/source3/auth
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2010-09-25 14:47:31 -0700
committerVolker Lendecke <vl@samba.org>2010-09-26 01:12:37 +0200
commit15a3afbd192cb8c8e4a248aec8f98141af41b8c1 (patch)
treee9d02f0b0f8856a62575e6e0e2aaa4ba5f3108b0 /source3/auth
parente4591eb8c1e8f800da1304ac0321beb6db4a344f (diff)
downloadsamba-15a3afbd192cb8c8e4a248aec8f98141af41b8c1.tar.gz
samba-15a3afbd192cb8c8e4a248aec8f98141af41b8c1.tar.bz2
samba-15a3afbd192cb8c8e4a248aec8f98141af41b8c1.zip
s3: Remove talloc_autofree_context() from init_system_info()
Diffstat (limited to 'source3/auth')
-rw-r--r--source3/auth/auth_util.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/auth/auth_util.c b/source3/auth/auth_util.c
index 825452026e..287d9632a9 100644
--- a/source3/auth/auth_util.c
+++ b/source3/auth/auth_util.c
@@ -911,7 +911,8 @@ bool init_system_info(void)
if (system_info != NULL)
return True;
- return NT_STATUS_IS_OK(make_new_server_info_system(talloc_autofree_context(), &system_info));
+ return NT_STATUS_IS_OK(make_new_server_info_system(NULL,
+ &system_info));
}
NTSTATUS make_server_info_system(TALLOC_CTX *mem_ctx,