1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-09 09:57:48 +03:00

s4:operational LDB module - make the counters unsigned

No need to have signed counters here.
This commit is contained in:
Matthias Dieter Wallnöfer 2010-03-04 15:44:10 +01:00
parent bf94d68df8
commit ffa03820f1

View File

@ -344,7 +344,7 @@ static int operational_search_post_process(struct ldb_module *module,
bool sd_flags_set)
{
struct ldb_context *ldb;
int i, a=0;
unsigned int i, a = 0;
ldb = ldb_module_get_ctx(module);
@ -472,7 +472,7 @@ static int operational_search(struct ldb_module *module, struct ldb_request *req
struct operational_context *ac;
struct ldb_request *down_req;
const char **search_attrs = NULL;
int i, a;
unsigned int i, a;
int ret;
ldb = ldb_module_get_ctx(module);