summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2011-01-24 13:29:14 +0100
committerStefan Metzmacher <metze@samba.org>2011-01-24 14:55:50 +0100
commit0dc1eee0b8174d591ea02de40bb564088a25fd97 (patch)
treef5ed8238ec81fa3993227b0795e8d6c8577ebffd /source3
parentcea36aeacf8778493463f31e6afc3f58384639e2 (diff)
downloadsamba-0dc1eee0b8174d591ea02de40bb564088a25fd97.tar.gz
samba-0dc1eee0b8174d591ea02de40bb564088a25fd97.tar.bz2
samba-0dc1eee0b8174d591ea02de40bb564088a25fd97.zip
libcli/ldap: use lib/ldb_compat.h for the s3 build
metze Autobuild-User: Stefan Metzmacher <metze@samba.org> Autobuild-Date: Mon Jan 24 14:55:50 CET 2011 on sn-devel-104
Diffstat (limited to 'source3')
-rw-r--r--source3/lib/ldb_compat.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/source3/lib/ldb_compat.h b/source3/lib/ldb_compat.h
index fb8f2f0377..f05104a5c6 100644
--- a/source3/lib/ldb_compat.h
+++ b/source3/lib/ldb_compat.h
@@ -71,4 +71,17 @@ struct ldb_parse_tree {
} u;
};
+struct ldb_message_element {
+ unsigned int flags;
+ const char *name;
+ unsigned int num_values;
+ struct ldb_val *values;
+};
+
+struct ldb_control {
+ const char *oid;
+ int critical;
+ void *data;
+};
+
#endif