summaryrefslogtreecommitdiff
path: root/source4
diff options
context:
space:
mode:
authorMatthias Dieter Wallnöfer <mdw@samba.org>2010-12-19 16:36:16 +0100
committerAndrew Bartlett <abartlet@samba.org>2010-12-21 15:10:37 +1100
commitef618f577870f28b8efd472a87d4dcf094d67d29 (patch)
treede486576ff0e33794800e48d2de97d5f1f9e5342 /source4
parent13fa6743d86ef6e51b3243cf3045242850358b43 (diff)
downloadsamba-ef618f577870f28b8efd472a87d4dcf094d67d29.tar.gz
samba-ef618f577870f28b8efd472a87d4dcf094d67d29.tar.bz2
samba-ef618f577870f28b8efd472a87d4dcf094d67d29.zip
s4:lib/ldb-samba/ldif_handlers.c - adaption needed for removed "const" on OIDs
Diffstat (limited to 'source4')
-rw-r--r--source4/lib/ldb-samba/ldif_handlers.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/ldb-samba/ldif_handlers.c b/source4/lib/ldb-samba/ldif_handlers.c
index 3fbb3fb512..58dda5713b 100644
--- a/source4/lib/ldb-samba/ldif_handlers.c
+++ b/source4/lib/ldb-samba/ldif_handlers.c
@@ -666,7 +666,7 @@ static int ldif_write_prefixMap(struct ldb_context *ldb, void *mem_ctx,
for (i=0; i < blob->ctr.dsdb.num_mappings; i++) {
DATA_BLOB oid_blob;
- const char *partial_oid = NULL;
+ char *partial_oid = NULL;
if (i > 0) {
string = talloc_asprintf_append(string, ";");