1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-24 21:34:56 +03:00

s4:acl LDB module - fix counter type

This commit is contained in:
Matthias Dieter Wallnöfer 2010-06-28 11:25:43 +02:00
parent e5c5d371d1
commit fc2d8fcb83

View File

@ -704,7 +704,8 @@ static int acl_check_self_membership(struct ldb_module *module,
const struct GUID *oc_guid,
const struct dsdb_attribute *attr)
{
int ret, i;
int ret;
unsigned int i;
TALLOC_CTX *tmp_ctx = talloc_new(req);
struct ldb_context *ldb = ldb_module_get_ctx(module);
struct ldb_dn *user_dn;