From fc40769b64188adedf273913fa94d30b307970d3 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Mon, 1 Aug 2011 12:40:24 +1000 Subject: [PATCH] s4-dsdb: fixed a warning on dsdb_delete() struct ldb_dn is never const Pair-Programmed-With: Andrew Bartlett Pair-Programmed-With: Amitay Isaacs --- source4/dsdb/common/util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source4/dsdb/common/util.c b/source4/dsdb/common/util.c index 344da344a3c..f306748d089 100644 --- a/source4/dsdb/common/util.c +++ b/source4/dsdb/common/util.c @@ -3725,7 +3725,7 @@ int dsdb_modify(struct ldb_context *ldb, const struct ldb_message *message, /* a delete with a set of flags */ -int dsdb_delete(struct ldb_context *ldb, const struct ldb_dn *dn, +int dsdb_delete(struct ldb_context *ldb, struct ldb_dn *dn, uint32_t dsdb_flags) { struct ldb_request *req; -- 2.34.1