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/examples | |
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/examples')
-rw-r--r-- | ldb/examples/ldbreader.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ldb/examples/ldbreader.c b/ldb/examples/ldbreader.c index 6e581145..e48b3d33 100644 --- a/ldb/examples/ldbreader.c +++ b/ldb/examples/ldbreader.c @@ -88,8 +88,9 @@ int main(int argc, const char **argv) quite fine grained results with the LDAP search syntax, however it is a bit confusing to start with. See RFC2254. */ - if (LDB_SUCCESS != ldb_search(ldb, NULL, LDB_SCOPE_DEFAULT, - expression, NULL, &resultMsg) ) { + if (LDB_SUCCESS != ldb_search(ldb, ldb, &resultMsg, + NULL, LDB_SCOPE_DEFAULT, NULL, + "%s", expression)) { printf("Problem in search\n"); exit(-1); } |