[SCM] Samba Shared Repository - branch master updated

Volker Lendecke vlendec at samba.org
Sun Aug 18 02:27:03 MDT 2013


The branch, master has been updated
       via  0627350 ldb: Fix a const warning
      from  c8c84b4 vfs_glusterfs: Implement proper mashalling/unmarshalling of ACLs

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


- Log -----------------------------------------------------------------
commit 06273504586733ac548ddadad6c7bc757d2d5e25
Author: Volker Lendecke <vl at samba.org>
Date:   Fri Aug 16 12:56:04 2013 +0000

    ldb: Fix a const warning
    
    Signed-off-by: Volker Lendecke <vl at samba.org>
    Reviewed-by: Simo Sorce <idra at samba.org>
    
    Autobuild-User(master): Volker Lendecke <vl at samba.org>
    Autobuild-Date(master): Sun Aug 18 10:26:27 CEST 2013 on sn-devel-104

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

Summary of changes:
 lib/ldb/ldb_map/ldb_map.c         |    4 ++--
 lib/ldb/ldb_map/ldb_map_private.h |    2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)


Changeset truncated at 500 lines:

diff --git a/lib/ldb/ldb_map/ldb_map.c b/lib/ldb/ldb_map/ldb_map.c
index d35e5c6..d95f050 100644
--- a/lib/ldb/ldb_map/ldb_map.c
+++ b/lib/ldb/ldb_map/ldb_map.c
@@ -869,9 +869,9 @@ static int map_objectclass_convert_operator(struct ldb_module *module, void *mem
  * ============================== */
 
 /* Build a request to search a record by its DN. */
-struct ldb_request *map_search_base_req(struct map_context *ac, struct ldb_dn *dn, const char * const *attrs, const struct ldb_parse_tree *tree, void *context, ldb_map_callback_t callback)
+struct ldb_request *map_search_base_req(struct map_context *ac, struct ldb_dn *dn, const char * const *attrs, struct ldb_parse_tree *tree, void *context, ldb_map_callback_t callback)
 {
-	const struct ldb_parse_tree *search_tree;
+	struct ldb_parse_tree *search_tree;
 	struct ldb_context *ldb;
 	struct ldb_request *req;
 	int ret;
diff --git a/lib/ldb/ldb_map/ldb_map_private.h b/lib/ldb/ldb_map/ldb_map_private.h
index 7faaa99..6e4a9dd 100644
--- a/lib/ldb/ldb_map/ldb_map_private.h
+++ b/lib/ldb/ldb_map/ldb_map_private.h
@@ -75,7 +75,7 @@ struct ldb_dn *ldb_dn_map_rebase_remote(struct ldb_module *module, void *mem_ctx
 struct ldb_request *map_search_base_req(struct map_context *ac,
 					struct ldb_dn *dn,
 					const char * const *attrs,
-					const struct ldb_parse_tree *tree,
+					struct ldb_parse_tree *tree,
 					void *context,
 					ldb_map_callback_t callback);
 struct ldb_request *map_build_fixup_req(struct map_context *ac,


-- 
Samba Shared Repository


More information about the samba-cvs mailing list