summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJakub Hrozek <jhrozek@redhat.com>2012-04-24 12:47:12 +0200
committerStephen Gallagher <sgallagh@redhat.com>2012-04-24 08:33:47 -0400
commit2058c415ccd2f118691651e840a256ac8360bbbe (patch)
tree5dec3c716cedd9c6b4e47cd474be05be456992e2
parent1290ae7d061518115579d8bade52ec3192d6a485 (diff)
downloadsssd-2058c415ccd2f118691651e840a256ac8360bbbe.tar.gz
sssd-2058c415ccd2f118691651e840a256ac8360bbbe.tar.xz
sssd-2058c415ccd2f118691651e840a256ac8360bbbe.zip
confdb_get_bool needs a TALLOC_CTX in sssd-1.8
-rw-r--r--src/providers/proxy/proxy_init.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/providers/proxy/proxy_init.c b/src/providers/proxy/proxy_init.c
index de4d7b615..1902647d5 100644
--- a/src/providers/proxy/proxy_init.c
+++ b/src/providers/proxy/proxy_init.c
@@ -109,7 +109,7 @@ int sssm_proxy_id_init(struct be_ctx *bectx,
goto done;
}
- ret = confdb_get_bool(bectx->cdb, bectx->conf_path,
+ ret = confdb_get_bool(bectx->cdb, ctx, bectx->conf_path,
CONFDB_PROXY_FAST_ALIAS, false, &ctx->fast_alias);
if (ret != EOK) goto done;