diff options
author | Andrew Tridgell <tridge@samba.org> | 2011-08-01 12:40:24 +1000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2011-08-04 16:17:24 +1000 |
commit | fc40769b64188adedf273913fa94d30b307970d3 (patch) | |
tree | 9c19b4bf5d5b20230bcbdf9a6b9ef7ff85937ff0 | |
parent | d10553a51c518407c48529dcfd3e7a5e6f6207c7 (diff) | |
download | samba-fc40769b64188adedf273913fa94d30b307970d3.tar.gz samba-fc40769b64188adedf273913fa94d30b307970d3.tar.bz2 samba-fc40769b64188adedf273913fa94d30b307970d3.zip |
s4-dsdb: fixed a warning on dsdb_delete()
struct ldb_dn is never const
Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
Pair-Programmed-With: Amitay Isaacs <amitay@gmail.com>
-rw-r--r-- | source4/dsdb/common/util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/dsdb/common/util.c b/source4/dsdb/common/util.c index 344da344a3..f306748d08 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; |