From 05f93c3e8fe2b0f6e520686742c48c78c96605ab Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Fri, 23 Oct 2009 14:23:40 +1100 Subject: s4-dsdb: add a static samdb_credentials Similarly to system_session(), this creates a static samdb_credentials() --- source4/ldap_server/ldap_backend.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source4/ldap_server/ldap_backend.c') diff --git a/source4/ldap_server/ldap_backend.c b/source4/ldap_server/ldap_backend.c index f3d82a7bc4..8c6b8f9fd6 100644 --- a/source4/ldap_server/ldap_backend.c +++ b/source4/ldap_server/ldap_backend.c @@ -182,8 +182,8 @@ NTSTATUS ldapsrv_backend_Init(struct ldapsrv_connection *conn) conn->lp_ctx, lp_sam_url(conn->lp_ctx), conn->session_info, - samdb_credentials(conn, conn->connection->event.ctx, conn->lp_ctx), - conn->global_catalog ? LDB_FLG_RDONLY : 0, NULL); + samdb_credentials(conn->connection->event.ctx, conn->lp_ctx), + conn->global_catalog ? LDB_FLG_RDONLY : 0); if (conn->ldb == NULL) { return NT_STATUS_INTERNAL_DB_CORRUPTION; } -- cgit