1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-12 09:18:10 +03:00

s4:getncchanges.c - fix some counter variable types

They should be "unsigned" since they count LDB objects. And also the SID array
can be counted as "unsigned".
This commit is contained in:
Matthias Dieter Wallnöfer 2010-08-23 07:37:36 +02:00
parent 481044f8b3
commit 2d80364f1b

View File

@ -690,7 +690,7 @@ static WERROR samdb_result_sid_array_dn(struct ldb_context *sam_ctx,
const struct dom_sid ***sids)
{
struct ldb_message_element *el;
int i;
unsigned int i;
el = ldb_msg_find_element(msg, attr);
if (!el) {
@ -731,7 +731,7 @@ static WERROR samdb_result_sid_array_ndr(struct ldb_context *sam_ctx,
const struct dom_sid ***sids)
{
struct ldb_message_element *el;
int i;
unsigned int i;
el = ldb_msg_find_element(msg, attr);
if (!el) {
@ -766,7 +766,7 @@ static WERROR samdb_result_sid_array_ndr(struct ldb_context *sam_ctx,
*/
static bool sid_list_match(const struct dom_sid **list1, const struct dom_sid **list2)
{
int i, j;
unsigned int i, j;
/* do we ever have enough SIDs here to worry about O(n^2) ? */
for (i=0; list1[i]; i++) {
for (j=0; list2[j]; j++) {