diff options
author | Sumit Bose <sbose@redhat.com> | 2012-10-18 17:40:48 +0200 |
---|---|---|
committer | Sumit Bose <sbose@redhat.com> | 2012-10-26 10:32:05 +0200 |
commit | 73550e4cc5abf4c639a65c7c65d68d9dd2ed64f7 (patch) | |
tree | a74ecc5d67cbacdc83ab3dd04a32507721cfa6e1 /src/db/sysdb.c | |
parent | d29e91321d175dce94d87c23a44ced40d265de2c (diff) | |
download | sssd-73550e4cc5abf4c639a65c7c65d68d9dd2ed64f7.tar.gz sssd-73550e4cc5abf4c639a65c7c65d68d9dd2ed64f7.tar.xz sssd-73550e4cc5abf4c639a65c7c65d68d9dd2ed64f7.zip |
sysdb: add sysdb_base_dn()
Add a help function which returns the ldb_dn object for the base dn of
the cache.
Diffstat (limited to 'src/db/sysdb.c')
-rw-r--r-- | src/db/sysdb.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/db/sysdb.c b/src/db/sysdb.c index 25ff67506..9685163b3 100644 --- a/src/db/sysdb.c +++ b/src/db/sysdb.c @@ -283,6 +283,10 @@ struct ldb_dn *sysdb_domain_dn(struct sysdb_ctx *sysdb, TALLOC_CTX *mem_ctx) { return ldb_dn_new_fmt(mem_ctx, sysdb->ldb, SYSDB_DOM_BASE, sysdb->domain->name); } +struct ldb_dn *sysdb_base_dn(struct sysdb_ctx *sysdb, TALLOC_CTX *mem_ctx) +{ + return ldb_dn_new(mem_ctx, sysdb->ldb, SYSDB_BASE); +} struct ldb_context *sysdb_ctx_get_ldb(struct sysdb_ctx *sysdb) { |