summaryrefslogtreecommitdiffstats
path: root/src/tools
diff options
context:
space:
mode:
authorMichal Zidek <mzidek@redhat.com>2013-03-05 16:23:14 +0100
committerJakub Hrozek <jhrozek@redhat.com>2013-03-05 17:41:56 +0100
commit2ba16c5a5c4b6d3cd2a44179186ec60eda828bcd (patch)
tree8b12cc51ec31c968cfd77524ffcb4dd73a11ce76 /src/tools
parent1402e7140d143aaf48224c23182c2c12c2a89cd7 (diff)
downloadsssd-2ba16c5a5c4b6d3cd2a44179186ec60eda828bcd.tar.gz
sssd-2ba16c5a5c4b6d3cd2a44179186ec60eda828bcd.tar.xz
sssd-2ba16c5a5c4b6d3cd2a44179186ec60eda828bcd.zip
Remove the alt_db_path parameter of sysdb_init
This parameter was never used. https://fedorahosted.org/sssd/ticket/1765
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/sss_cache.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/sss_cache.c b/src/tools/sss_cache.c
index db6c792cd..ec09662ee 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"));