diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2009-01-21 15:18:05 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2009-01-21 15:18:05 +0100 |
commit | 47951fc5d0085e124666b7667715bba98076820e (patch) | |
tree | 67216ad0d594eb5a7238327c386ba34594142118 /source3/lib/ldb/include/ldb.h | |
parent | d3199276eac8caa55c8334458d156fd4badae338 (diff) | |
download | samba-47951fc5d0085e124666b7667715bba98076820e.tar.gz samba-47951fc5d0085e124666b7667715bba98076820e.tar.bz2 samba-47951fc5d0085e124666b7667715bba98076820e.zip |
Reorder arguments to ldb_search() to match what is in Samba 4.
Diffstat (limited to 'source3/lib/ldb/include/ldb.h')
-rw-r--r-- | source3/lib/ldb/include/ldb.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/source3/lib/ldb/include/ldb.h b/source3/lib/ldb/include/ldb.h index 3891c1c6a3..d98536c480 100644 --- a/source3/lib/ldb/include/ldb.h +++ b/source3/lib/ldb/include/ldb.h @@ -987,11 +987,12 @@ int ldb_build_rename_req(struct ldb_request **ret_req, \note use talloc_free() to free the ldb_result returned */ -int ldb_search(struct ldb_context *ldb, +int ldb_search(struct ldb_context *ldb, TALLOC_CTX *mem_ctx, + struct ldb_result **_res, const struct ldb_dn *base, enum ldb_scope scope, - const char *expression, - const char * const *attrs, struct ldb_result **_res); + const char * const *attrs, + const char *expression); /* * a useful search function where you can easily define the expression and |