The branch, master has been updated
       via  558e2de... Added some dn to the info in the log messages.
      from  8324dbc... Removed the default DACL from token, as we will not be 
using it.

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


- Log -----------------------------------------------------------------
commit 558e2deda6798e06a6a64a25312b514566c38f66
Author: Nadezhda Ivanova <nadezhda.ivan...@postpath.com>
Date:   Tue Nov 3 11:21:05 2009 +0200

    Added some dn to the info in the log messages.

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

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


Changeset truncated at 500 lines:

diff --git a/source4/dsdb/samdb/ldb_modules/descriptor.c 
b/source4/dsdb/samdb/ldb_modules/descriptor.c
index 82f0911..f1c010c 100644
--- a/source4/dsdb/samdb/ldb_modules/descriptor.c
+++ b/source4/dsdb/samdb/ldb_modules/descriptor.c
@@ -417,7 +417,7 @@ static int descriptor_add(struct ldb_module *module, struct 
ldb_request *req)
        data = talloc_get_type(ldb_module_get_private(module), struct 
descriptor_data);
        ldb = ldb_module_get_ctx(module);
 
-       ldb_debug(ldb, LDB_DEBUG_TRACE, "descriptor_add\n");
+       ldb_debug(ldb, LDB_DEBUG_TRACE,"descriptor_add: %s\n", 
ldb_dn_get_linearized(req->op.add.message->dn));
 
        if (ldb_dn_is_special(req->op.add.message->dn)) {
                return ldb_next_request(module, req);
@@ -459,14 +459,14 @@ static int descriptor_add(struct ldb_module *module, 
struct ldb_request *req)
 static int descriptor_modify(struct ldb_module *module, struct ldb_request 
*req)
 {
        struct ldb_context *ldb = ldb_module_get_ctx(module);
-       ldb_debug(ldb, LDB_DEBUG_TRACE, "descriptor_modify\n");
+       ldb_debug(ldb, LDB_DEBUG_TRACE,"descriptor_modify: %s\n", 
ldb_dn_get_linearized(req->op.mod.message->dn));
        return ldb_next_request(module, req);
 }
 /* TODO */
 static int descriptor_rename(struct ldb_module *module, struct ldb_request 
*req)
 {
        struct ldb_context *ldb = ldb_module_get_ctx(module);
-       ldb_debug(ldb, LDB_DEBUG_TRACE, "descriptor_rename\n");
+       ldb_debug(ldb, LDB_DEBUG_TRACE,"descriptor_rename: %s\n", 
ldb_dn_get_linearized(req->op.rename.olddn));
        return ldb_next_request(module, req);
 }
 


-- 
Samba Shared Repository

Reply via email to