summaryrefslogtreecommitdiff
path: root/source4/torture/winbind
diff options
context:
space:
mode:
authorMatthias Dieter Wallnöfer <mwallnoefer@yahoo.de>2010-03-05 08:47:48 +0100
committerMatthias Dieter Wallnöfer <mwallnoefer@yahoo.de>2010-03-05 08:55:47 +0100
commitbfd31db9a9ea167650b109362f3a03cb64ff774e (patch)
tree0db1ab49281d93fd6f56d916b8b31429188c019c /source4/torture/winbind
parent2e1637833bb5e1d5c44b10761a8f6bbd88bde32d (diff)
downloadsamba-bfd31db9a9ea167650b109362f3a03cb64ff774e.tar.gz
s4:torture/winbind/struct_based.c - fix up (un)signedness of a function argument
Otherwise always a warning is generated.
Diffstat (limited to 'source4/torture/winbind')
-rw-r--r--source4/torture/winbind/struct_based.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source4/torture/winbind/struct_based.c b/source4/torture/winbind/struct_based.c
index 5a621bc7724..99b08283197 100644
--- a/source4/torture/winbind/struct_based.c
+++ b/source4/torture/winbind/struct_based.c
@@ -636,7 +636,8 @@ static bool torture_winbind_struct_list_users(struct torture_context *torture)
return true;
}
-static bool get_group_list(struct torture_context *torture, int *num_entries,
+static bool get_group_list(struct torture_context *torture,
+ unsigned int *num_entries,
char ***groups)
{
struct winbindd_request req;