mirror of
https://github.com/samba-team/samba.git
synced 2024-12-31 17:18:04 +03:00
r18889: Add some const. What's the policy here? Should I do this in Samba4 as well?
Volker
(This used to be commit fd020a1998
)
This commit is contained in:
parent
10a8d62e96
commit
ba68916c9a
@ -613,7 +613,7 @@ int ldb_build_search_req(struct ldb_request **ret_req,
|
||||
int ldb_build_add_req(struct ldb_request **ret_req,
|
||||
struct ldb_context *ldb,
|
||||
void *mem_ctx,
|
||||
struct ldb_message *message,
|
||||
const struct ldb_message *message,
|
||||
struct ldb_control **controls,
|
||||
void *context,
|
||||
ldb_request_callback_t callback)
|
||||
@ -642,7 +642,7 @@ int ldb_build_add_req(struct ldb_request **ret_req,
|
||||
int ldb_build_mod_req(struct ldb_request **ret_req,
|
||||
struct ldb_context *ldb,
|
||||
void *mem_ctx,
|
||||
struct ldb_message *message,
|
||||
const struct ldb_message *message,
|
||||
struct ldb_control **controls,
|
||||
void *context,
|
||||
ldb_request_callback_t callback)
|
||||
@ -671,7 +671,7 @@ int ldb_build_mod_req(struct ldb_request **ret_req,
|
||||
int ldb_build_del_req(struct ldb_request **ret_req,
|
||||
struct ldb_context *ldb,
|
||||
void *mem_ctx,
|
||||
struct ldb_dn *dn,
|
||||
const struct ldb_dn *dn,
|
||||
struct ldb_control **controls,
|
||||
void *context,
|
||||
ldb_request_callback_t callback)
|
||||
@ -700,8 +700,8 @@ int ldb_build_del_req(struct ldb_request **ret_req,
|
||||
int ldb_build_rename_req(struct ldb_request **ret_req,
|
||||
struct ldb_context *ldb,
|
||||
void *mem_ctx,
|
||||
struct ldb_dn *olddn,
|
||||
struct ldb_dn *newdn,
|
||||
const struct ldb_dn *olddn,
|
||||
const struct ldb_dn *newdn,
|
||||
struct ldb_control **controls,
|
||||
void *context,
|
||||
ldb_request_callback_t callback)
|
||||
|
Loading…
Reference in New Issue
Block a user