From 54bd30f70632b8fcbe164133d2479092b7262a29 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Sun, 25 Oct 2009 17:19:03 +1100 Subject: s4-samdb: reduce the number of samdb opens at startup Using common parameters means that the ldb_wrap code can return a reference rather than a new database --- source4/kdc/hdb-samba4.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source4/kdc') diff --git a/source4/kdc/hdb-samba4.c b/source4/kdc/hdb-samba4.c index 4062e13f6c..5fef5908b8 100644 --- a/source4/kdc/hdb-samba4.c +++ b/source4/kdc/hdb-samba4.c @@ -1596,9 +1596,9 @@ NTSTATUS hdb_samba4_create_kdc(TALLOC_CTX *mem_ctx, (*db)->hdb_db = NULL; (*db)->hdb_capability_flags = 0; - nt_status = auth_system_session_info(*db, lp_ctx, &session_info); - if (!NT_STATUS_IS_OK(nt_status)) { - return nt_status; + session_info = system_session(lp_ctx); + if (session_info == NULL) { + return NT_STATUS_INTERNAL_ERROR; } /* The idea here is very simple. Using Kerberos to -- cgit