From 224a0dfad69c2e056f19e2b4865d592f495fb944 Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Fri, 13 Feb 2009 14:17:24 -0500 Subject: Always pass teh database path explicitly, so that test cases can use throw away databases Check version and init main db if empty --- server/nss/nsssrv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'server/nss/nsssrv.c') diff --git a/server/nss/nsssrv.c b/server/nss/nsssrv.c index 1c42c3c5..fa43f60f 100644 --- a/server/nss/nsssrv.c +++ b/server/nss/nsssrv.c @@ -467,7 +467,7 @@ int nss_process_init(TALLOC_CTX *mem_ctx, return ret; } - ret = sysdb_init(nctx, ev, cdb, &nctx->sysdb); + ret = sysdb_init(nctx, ev, cdb, NULL, &nctx->sysdb); if (ret != EOK) { DEBUG(0, ("fatal error initializing nss_ctx\n")); return ret; -- cgit