[SSSD] [PATCH] confdb_get_bool needs a TALLOC_CTX in sssd-1.8

Jakub Hrozek jhrozek at redhat.com
Tue Apr 24 10:48:42 UTC 2012


The attached patch only applied on top of 1.8 -- the confdb_get_bool
declaration is a little different there.
-------------- next part --------------
>From 17435c82ff03b3a88955a6ad6d75133f31fee103 Mon Sep 17 00:00:00 2001
From: Jakub Hrozek <jhrozek at redhat.com>
Date: Tue, 24 Apr 2012 12:47:12 +0200
Subject: [PATCH] confdb_get_bool needs a TALLOC_CTX in sssd-1.8

---
 src/providers/proxy/proxy_init.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/providers/proxy/proxy_init.c b/src/providers/proxy/proxy_init.c
index de4d7b615aabb1d151a55c5eb6ac620be1f244cf..1902647d53b7a524fd1e383fd447c9df21f8e54c 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;
 
-- 
1.7.7.6



More information about the sssd-devel mailing list