From 7e7df78bd7ae5575da7443b45c0e2e4167eebde2 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Thu, 31 Jul 2014 11:32:02 +0200 Subject: s4:dns_server: remove const from dns_replace_records() All callers are find we the record array gets modified. Bug: https://bugzilla.samba.org/show_bug.cgi?id=10749 Signed-off-by: Stefan Metzmacher Reviewed-by: Michael Adam Reviewed-by: Andrew Bartlett --- source4/dns_server/dns_server.h | 2 +- source4/dns_server/dns_utils.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/source4/dns_server/dns_server.h b/source4/dns_server/dns_server.h index 24596161b7..12ccc9b899 100644 --- a/source4/dns_server/dns_server.h +++ b/source4/dns_server/dns_server.h @@ -101,7 +101,7 @@ WERROR dns_replace_records(struct dns_server *dns, TALLOC_CTX *mem_ctx, struct ldb_dn *dn, bool needs_add, - const struct dnsp_DnssrvRpcRecord *records, + struct dnsp_DnssrvRpcRecord *records, uint16_t rec_count); WERROR dns_name2dn(struct dns_server *dns, TALLOC_CTX *mem_ctx, diff --git a/source4/dns_server/dns_utils.c b/source4/dns_server/dns_utils.c index 3bfa98b762..cf1adccf83 100644 --- a/source4/dns_server/dns_utils.c +++ b/source4/dns_server/dns_utils.c @@ -161,7 +161,7 @@ WERROR dns_replace_records(struct dns_server *dns, TALLOC_CTX *mem_ctx, struct ldb_dn *dn, bool needs_add, - const struct dnsp_DnssrvRpcRecord *records, + struct dnsp_DnssrvRpcRecord *records, uint16_t rec_count) { struct ldb_message_element *el; -- cgit