diff options
author | Simo Sorce <idra@samba.org> | 2006-05-20 19:37:21 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:08:15 -0500 |
commit | 6d0969aa1adff4c7f134bd6e3e42997e72b41cf6 (patch) | |
tree | 67b86f66eb8f698988c3484c55774e3b1397ced5 /source4/lib/ldb/include | |
parent | e23cc70a72e6582e91bcfdaf1d6ed2191e7e23a6 (diff) | |
download | samba-6d0969aa1adff4c7f134bd6e3e42997e72b41cf6.tar.gz samba-6d0969aa1adff4c7f134bd6e3e42997e72b41cf6.tar.bz2 samba-6d0969aa1adff4c7f134bd6e3e42997e72b41cf6.zip |
r15761: Fix-as-you-go ...
Testing various async paths and uncovering bugs
(This used to be commit 099d873ea596ece18efe63b06bc64e7f97a96f82)
Diffstat (limited to 'source4/lib/ldb/include')
-rw-r--r-- | source4/lib/ldb/include/ldb.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source4/lib/ldb/include/ldb.h b/source4/lib/ldb/include/ldb.h index 866b062d06..9f0613feaa 100644 --- a/source4/lib/ldb/include/ldb.h +++ b/source4/lib/ldb/include/ldb.h @@ -619,17 +619,17 @@ struct ldb_async_handle { struct ldb_search { const struct ldb_dn *base; enum ldb_scope scope; - struct ldb_parse_tree *tree; + const struct ldb_parse_tree *tree; const char * const *attrs; struct ldb_result *res; }; struct ldb_add { - struct ldb_message *message; + const struct ldb_message *message; }; struct ldb_modify { - struct ldb_message *message; + const struct ldb_message *message; }; struct ldb_delete { @@ -647,7 +647,7 @@ struct ldb_register_control { struct ldb_request { - int operation; + enum ldb_request_type operation; union { struct ldb_search search; |