Author: metze Date: 2006-01-15 19:04:51 +0000 (Sun, 15 Jan 2006) New Revision: 12948
WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=12948 Log: fix compiler warning metze Modified: branches/SAMBA_4_0/source/lib/ldb/modules/asq.c Changeset: Modified: branches/SAMBA_4_0/source/lib/ldb/modules/asq.c =================================================================== --- branches/SAMBA_4_0/source/lib/ldb/modules/asq.c 2006-01-15 16:24:55 UTC (rev 12947) +++ branches/SAMBA_4_0/source/lib/ldb/modules/asq.c 2006-01-15 19:04:51 UTC (rev 12948) @@ -144,7 +144,7 @@ if (exp_req == NULL) return LDB_ERR_OPERATIONS_ERROR; exp_req->operation = LDB_REQ_SEARCH; - exp_req->op.search.base = ldb_dn_explode(exp_req, el->values[i].data); + exp_req->op.search.base = ldb_dn_explode(exp_req, (const char *)el->values[i].data); if (exp_req->op.search.base == NULL) { return build_response(res, ASQ_CTRL_INVALID_ATTRIBUTE_SYNTAX); }
