[SCM] Samba Shared Repository - branch master updated

Matthias Dieter Wallnöfer mdw at samba.org
Mon Feb 8 04:51:21 MST 2010


The branch, master has been updated
       via  a8d6549... s4:subtree_delete - "NULL" as format string isn't allowed on FreeBSD
      from  89c089d... s3-net: fix net ads dns usage calls.

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


- Log -----------------------------------------------------------------
commit a8d6549cccb375c95a047fea68f5af2a186979ea
Author: Matthias Dieter Wallnöfer <mwallnoefer at yahoo.de>
Date:   Mon Feb 8 12:08:36 2010 +0100

    s4:subtree_delete - "NULL" as format string isn't allowed on FreeBSD
    
    I changed the format string into "(objectClass=*)" which should be an
    equivalent expression for choosing all available objects.
    
    Consider bug 7115 for the issue.

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

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


Changeset truncated at 500 lines:

diff --git a/source4/dsdb/samdb/ldb_modules/subtree_delete.c b/source4/dsdb/samdb/ldb_modules/subtree_delete.c
index 34f5cca..9ed44be 100644
--- a/source4/dsdb/samdb/ldb_modules/subtree_delete.c
+++ b/source4/dsdb/samdb/ldb_modules/subtree_delete.c
@@ -46,8 +46,9 @@ static int subtree_delete(struct ldb_module *module, struct ldb_request *req)
 	}
 
 	/* see if we have any children */
-	ret = dsdb_module_search(module, req, &res, req->op.del.dn, LDB_SCOPE_ONELEVEL, attrs,
-				 DSDB_SEARCH_SHOW_DELETED, NULL);
+	ret = dsdb_module_search(module, req, &res, req->op.del.dn,
+				 LDB_SCOPE_ONELEVEL, attrs,
+				 DSDB_SEARCH_SHOW_DELETED, "(objectClass=*)");
 	if (ret != LDB_SUCCESS) {
 		talloc_free(res);
 		return ret;


-- 
Samba Shared Repository


More information about the samba-cvs mailing list