The branch, master has been updated
       via  99f0891 s4-dsdb: Fixed a call to the wrong ops function in 
dsdb_module_search_dn.
      from  8afb252 s3-waf: fix debug2html.

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master


- Log -----------------------------------------------------------------
commit 99f0891944e8df91b98934b6c57f9c68dfed8722
Author: Nadezhda Ivanova <[email protected]>
Date:   Sat Sep 25 10:19:11 2010 -0700

    s4-dsdb: Fixed a call to the wrong ops function in dsdb_module_search_dn.

-----------------------------------------------------------------------

Summary of changes:
 source4/dsdb/samdb/ldb_modules/util.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source4/dsdb/samdb/ldb_modules/util.c 
b/source4/dsdb/samdb/ldb_modules/util.c
index 36f0ae9..a782001 100644
--- a/source4/dsdb/samdb/ldb_modules/util.c
+++ b/source4/dsdb/samdb/ldb_modules/util.c
@@ -79,7 +79,7 @@ int dsdb_module_search_dn(struct ldb_module *module,
        } else {
                const struct ldb_module_ops *ops = ldb_module_get_ops(module);
                SMB_ASSERT(dsdb_flags & DSDB_FLAG_OWN_MODULE);
-               ret = ops->modify(module, req);
+               ret = ops->search(module, req);
        }
        if (ret == LDB_SUCCESS) {
                ret = ldb_wait(req->handle, LDB_WAIT_ALL);


-- 
Samba Shared Repository

Reply via email to