1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-26 10:04:02 +03:00

ldb:ldb_match.c - fix a counter type

This commit is contained in:
Matthias Dieter Wallnöfer 2010-10-13 14:03:09 +02:00
parent beb5afea54
commit 9bdea1b384

View File

@ -103,7 +103,7 @@ static int ldb_match_present(struct ldb_context *ldb,
}
if (a->syntax->operator_fn) {
int i;
unsigned int i;
for (i = 0; i < el->num_values; i++) {
int ret = a->syntax->operator_fn(ldb, LDB_OP_PRESENT, a, &el->values[i], NULL, matched);
if (ret != LDB_SUCCESS) return ret;