From 2ba16c5a5c4b6d3cd2a44179186ec60eda828bcd Mon Sep 17 00:00:00 2001 From: Michal Zidek Date: Tue, 5 Mar 2013 16:23:14 +0100 Subject: Remove the alt_db_path parameter of sysdb_init This parameter was never used. https://fedorahosted.org/sssd/ticket/1765 --- src/tools/sss_cache.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/tools/sss_cache.c') diff --git a/src/tools/sss_cache.c b/src/tools/sss_cache.c index db6c792c..ec09662e 100644 --- a/src/tools/sss_cache.c +++ b/src/tools/sss_cache.c @@ -437,7 +437,7 @@ errno_t init_domains(struct cache_tool_ctx *ctx, const char *domain) return ret; } - ret = sysdb_init(ctx, ctx->domains, NULL, false); + ret = sysdb_init(ctx, ctx->domains, false); SYSDB_VERSION_ERROR(ret); if (ret != EOK) { DEBUG(1, ("Could not initialize connection to the sysdb\n")); -- cgit