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:
parent
bf94d68df8
commit
ffa03820f1
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user