diff options
author | Andrew Tridgell <tridge@samba.org> | 2005-06-15 01:02:53 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:18:12 -0500 |
commit | 3e92471d4cfa169b97da73752b6eb6d1ea8cb466 (patch) | |
tree | bd033bbf24beb6c2cb968bcbf041bb9717b9a79a /source4/ldap_server/ldap_rootdse.c | |
parent | a7d6185f41229463f071a4d5f8c42ebe916982b2 (diff) | |
download | samba-3e92471d4cfa169b97da73752b6eb6d1ea8cb466.tar.gz samba-3e92471d4cfa169b97da73752b6eb6d1ea8cb466.tar.bz2 samba-3e92471d4cfa169b97da73752b6eb6d1ea8cb466.zip |
r7596: next step in ldap cleanup. I'm aiming to get rid of the cut&pasted
ldif parsing code in libcli/ldap/ldap_ldif.c, and instead use the ldb
ldif code. To do that I have changed the ldap code to use 'struct
ldb_message_element' instead of 'struct ldap_attribute'. They are
essentially the same structure anyway, so by making them really the
same it will be much easier to use the ldb code in libcli/ldap/
I have also made 'struct ldb_val' the same as a DATA_BLOB, which will
simplify data handling in quite a few places (I haven't yet removed
all the code that maps between these two, that will come later)
(This used to be commit 87fc3073392236221a3a6b933284e9e477c24ae5)
Diffstat (limited to 'source4/ldap_server/ldap_rootdse.c')
-rw-r--r-- | source4/ldap_server/ldap_rootdse.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/ldap_server/ldap_rootdse.c b/source4/ldap_server/ldap_rootdse.c index a754601279..1740a29637 100644 --- a/source4/ldap_server/ldap_rootdse.c +++ b/source4/ldap_server/ldap_rootdse.c @@ -112,7 +112,7 @@ static void *rootdse_db_connect(TALLOC_CTX *mem_ctx) } -static NTSTATUS fill_dynamic_values(void *mem_ctx, struct ldap_attribute *attrs) +static NTSTATUS fill_dynamic_values(void *mem_ctx, struct ldb_message_element *attrs) { /* * currentTime @@ -346,7 +346,7 @@ static NTSTATUS rootdse_Search(struct ldapsrv_partition *partition, struct ldaps goto queue_reply; } ent->num_attributes = res[0]->num_elements; - ent->attributes = talloc_array(ent_r, struct ldap_attribute, ent->num_attributes); + ent->attributes = talloc_array(ent_r, struct ldb_message_element, ent->num_attributes); NT_STATUS_HAVE_NO_MEMORY(ent->attributes); for (j=0; j < ent->num_attributes; j++) { ent->attributes[j].name = talloc_steal(ent->attributes, res[0]->elements[j].name); |