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/monitor/monitor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/monitor') diff --git a/src/monitor/monitor.c b/src/monitor/monitor.c index 2c8cdb60..c7d6d3e1 100644 --- a/src/monitor/monitor.c +++ b/src/monitor/monitor.c @@ -2211,7 +2211,7 @@ int monitor_process_init(struct mt_ctx *ctx, if (!tmp_ctx) { return ENOMEM; } - ret = sysdb_init(tmp_ctx, ctx->domains, NULL, true); + ret = sysdb_init(tmp_ctx, ctx->domains, true); if (ret != EOK) { SYSDB_VERSION_ERROR_DAEMON(ret); return ret; -- cgit