diff options
author | Andrew Bartlett <abartlet@samba.org> | 2006-08-17 08:31:19 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:15:39 -0500 |
commit | 7de75a991bda653497a0989de93608310b55894a (patch) | |
tree | a672da526817cded9f620511ca02d92f34f3a3ad /source4/lib/ldb/include | |
parent | 9f7da6fea0bc9a330f8620d100e27d4eabbae253 (diff) | |
download | samba-7de75a991bda653497a0989de93608310b55894a.tar.gz samba-7de75a991bda653497a0989de93608310b55894a.tar.bz2 samba-7de75a991bda653497a0989de93608310b55894a.zip |
r17580: Add a new tools to convert back from AD-like schema to OpenLDAP.
Add attribute syntax mapping to the existing OpenLDAP -> AD tool.
Andrew Bartlett
(This used to be commit ba1c652bae700a82acde166e70035d61c320e233)
Diffstat (limited to 'source4/lib/ldb/include')
-rw-r--r-- | source4/lib/ldb/include/ldb.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source4/lib/ldb/include/ldb.h b/source4/lib/ldb/include/ldb.h index e756a9b00b..2e659b5307 100644 --- a/source4/lib/ldb/include/ldb.h +++ b/source4/lib/ldb/include/ldb.h @@ -1265,6 +1265,9 @@ uint64_t ldb_msg_find_attr_as_uint64(const struct ldb_message *msg, double ldb_msg_find_attr_as_double(const struct ldb_message *msg, const char *attr_name, double default_value); +int ldb_msg_find_attr_as_bool(const struct ldb_message *msg, + const char *attr_name, + int default_value); const char *ldb_msg_find_attr_as_string(const struct ldb_message *msg, const char *attr_name, const char *default_value); |