diff options
author | Jan Zeleny <jzeleny@redhat.com> | 2011-05-23 07:08:01 -0400 |
---|---|---|
committer | Stephen Gallagher <sgallagh@redhat.com> | 2011-06-02 14:07:45 -0400 |
commit | ba33be9b40ecbe6f98a52025348dbcff43273b40 (patch) | |
tree | b74faf15f1cc71c5bf18c04d07ed4c8562dd3a83 /src/db/sysdb.c | |
parent | 11ce5aed0bd637e036e743e3f6ab276c7107f641 (diff) | |
download | sssd-ba33be9b40ecbe6f98a52025348dbcff43273b40.tar.gz sssd-ba33be9b40ecbe6f98a52025348dbcff43273b40.tar.bz2 sssd-ba33be9b40ecbe6f98a52025348dbcff43273b40.zip |
Added sysdb_attrs_get_bool() function
Diffstat (limited to 'src/db/sysdb.c')
-rw-r--r-- | src/db/sysdb.c | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/db/sysdb.c b/src/db/sysdb.c index 5396b7fc..ffe9ff77 100644 --- a/src/db/sysdb.c +++ b/src/db/sysdb.c @@ -372,6 +372,28 @@ int sysdb_attrs_get_uint32_t(struct sysdb_attrs *attrs, const char *name, return EOK; } +errno_t sysdb_attrs_get_bool(struct sysdb_attrs *attrs, const char *name, + bool *value) +{ + struct ldb_message_element *el; + int ret; + + ret = sysdb_attrs_get_el_int(attrs, name, false, &el); + if (ret) { + return ret; + } + + if (el->num_values != 1) { + return ERANGE; + } + + if (strcmp((const char *)el->values[0].data, "TRUE") == 0) + *value = true; + else + *value = false; + return EOK; +} + int sysdb_attrs_get_string_array(struct sysdb_attrs *attrs, const char *name, TALLOC_CTX *mem_ctx, const char ***string) { |