diff options
author | Simo Sorce <idra@samba.org> | 2008-09-25 02:28:56 -0400 |
---|---|---|
committer | Simo Sorce <idra@samba.org> | 2008-09-25 03:21:34 -0400 |
commit | 9bd63b97c9c3132a0b3c8c6bd1c67f8c31a54c3c (patch) | |
tree | af51399e30505f1111308f8d582934ab83d31396 /ldb/ldb_map/ldb_map.h | |
parent | f698831f0ae0cd86225eb647ae4aeb813f08d3b5 (diff) | |
download | sssd-9bd63b97c9c3132a0b3c8c6bd1c67f8c31a54c3c.tar.gz sssd-9bd63b97c9c3132a0b3c8c6bd1c67f8c31a54c3c.tar.bz2 sssd-9bd63b97c9c3132a0b3c8c6bd1c67f8c31a54c3c.zip |
Sync ldb with upstream (includes uncommitted ldb async patches)
Diffstat (limited to 'ldb/ldb_map/ldb_map.h')
-rw-r--r-- | ldb/ldb_map/ldb_map.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/ldb/ldb_map/ldb_map.h b/ldb/ldb_map/ldb_map.h index e40bb9cd..7f92c15b 100644 --- a/ldb/ldb_map/ldb_map.h +++ b/ldb/ldb_map/ldb_map.h @@ -160,14 +160,12 @@ int map_search(struct ldb_module *module, struct ldb_request *req); int map_rename(struct ldb_module *module, struct ldb_request *req); int map_delete(struct ldb_module *module, struct ldb_request *req); int map_modify(struct ldb_module *module, struct ldb_request *req); -int map_wait(struct ldb_handle *handle, enum ldb_wait_type type); #define LDB_MAP_OPS \ .add = map_add, \ .modify = map_modify, \ .del = map_delete, \ .rename = map_rename, \ - .search = map_search, \ - .wait = map_wait, + .search = map_search, #endif /* __LDB_MAP_H__ */ |