[SCM] Samba Shared Repository - branch master updated

Nadezhda Ivanova nivanova at samba.org
Tue Jun 29 02:46:48 MDT 2010


The branch, master has been updated
       via  845e7a6... Fixed incorrect use of cn instead of lDAPDisplayName
      from  cc7c572... s4:secrets Ensure secrets.ldb uses the same hooks as the rest of Samba

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


- Log -----------------------------------------------------------------
commit 845e7a609d23677539d9439b941e0dffb53f6bc9
Author: Nadezhda Ivanova <nivanova at samba.org>
Date:   Tue Jun 29 11:46:22 2010 +0300

    Fixed incorrect use of cn instead of lDAPDisplayName

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

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


Changeset truncated at 500 lines:

diff --git a/source4/dsdb/samdb/ldb_modules/acl.c b/source4/dsdb/samdb/ldb_modules/acl.c
index bd788d4..e823b1e 100644
--- a/source4/dsdb/samdb/ldb_modules/acl.c
+++ b/source4/dsdb/samdb/ldb_modules/acl.c
@@ -724,7 +724,7 @@ static int acl_check_self_membership(struct ldb_module *module,
 	if (ret != LDB_SUCCESS) {
 		return ret;
 	}
-	member_el = ldb_msg_find_element(req->op.mod.message, "Member");
+	member_el = ldb_msg_find_element(req->op.mod.message, "member");
 	if (!member_el) {
 		return LDB_ERR_OPERATIONS_ERROR;
 	}
@@ -844,7 +844,7 @@ static int acl_modify(struct ldb_module *module, struct ldb_request *req)
 		if (ldb_attr_cmp("nTSecurityDescriptor", req->op.mod.message->elements[i].name) == 0) {
 			modify_sd = true;
 		}
-		else if (ldb_attr_cmp("Member", req->op.mod.message->elements[i].name) == 0) {
+		else if (ldb_attr_cmp("member", req->op.mod.message->elements[i].name) == 0) {
 			ret = acl_check_self_membership(module,
 							req,
 							sd,


-- 
Samba Shared Repository


More information about the samba-cvs mailing list