diff options
author | Matthias Dieter Wallnöfer <mwallnoefer@yahoo.de> | 2010-03-07 19:14:16 +0100 |
---|---|---|
committer | Matthias Dieter Wallnöfer <mwallnoefer@yahoo.de> | 2010-03-07 19:19:50 +0100 |
commit | 049f9d3c1a62f00b5f6eae97cfebddd45bf2edbc (patch) | |
tree | ed2a0eba9c9b81834ad2209cf009464e82c54aea /source4 | |
parent | 4ad912d2daed57b08f75b59638aa940109d8f167 (diff) | |
download | samba-049f9d3c1a62f00b5f6eae97cfebddd45bf2edbc.tar.gz samba-049f9d3c1a62f00b5f6eae97cfebddd45bf2edbc.tar.bz2 samba-049f9d3c1a62f00b5f6eae97cfebddd45bf2edbc.zip |
s4:kludge_acl LDB module - change counter variables to "unsigned" where appropriate
Diffstat (limited to 'source4')
-rw-r--r-- | source4/dsdb/samdb/ldb_modules/kludge_acl.c | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/source4/dsdb/samdb/ldb_modules/kludge_acl.c b/source4/dsdb/samdb/ldb_modules/kludge_acl.c index cc29d26cf0..3bdcaff2d0 100644 --- a/source4/dsdb/samdb/ldb_modules/kludge_acl.c +++ b/source4/dsdb/samdb/ldb_modules/kludge_acl.c @@ -97,7 +97,8 @@ static int kludge_acl_allowedAttributes(struct ldb_context *ldb, struct ldb_mess const struct dsdb_schema *schema = dsdb_get_schema(ldb); TALLOC_CTX *mem_ctx; const char **attr_list; - int i, ret; + unsigned int i; + int ret; /* If we don't have a schema yet, we can't do anything... */ if (schema == NULL) { @@ -144,7 +145,8 @@ static int kludge_acl_childClasses(struct ldb_context *ldb, struct ldb_message * struct ldb_message_element *allowedClasses; const struct dsdb_schema *schema = dsdb_get_schema(ldb); const struct dsdb_class *sclass; - int i, j, ret; + unsigned int i, j; + int ret; /* If we don't have a schema yet, we can't do anything... */ if (schema == NULL) { @@ -199,7 +201,8 @@ static int kludge_acl_callback(struct ldb_request *req, struct ldb_reply *ares) struct ldb_context *ldb; struct kludge_acl_context *ac; struct kludge_private_data *data; - int i, ret; + unsigned int i; + int ret; ac = talloc_get_type(req->context, struct kludge_acl_context); data = talloc_get_type(ldb_module_get_private(ac->module), struct kludge_private_data); @@ -310,7 +313,8 @@ static int kludge_acl_search(struct ldb_module *module, struct ldb_request *req) struct ldb_request *down_req; struct kludge_private_data *data; const char * const *attrs; - int ret, i; + int ret; + unsigned int i; ldb = ldb_module_get_ctx(module); @@ -436,7 +440,8 @@ static int kludge_acl_extended(struct ldb_module *module, struct ldb_request *re static int kludge_acl_init(struct ldb_module *module) { struct ldb_context *ldb; - int ret, i; + int ret; + unsigned int i; TALLOC_CTX *mem_ctx = talloc_new(module); static const char *attrs[] = { "passwordAttribute", NULL }; struct ldb_result *res; |