mirror of
https://github.com/samba-team/samba.git
synced 2025-08-04 08:22:08 +03:00
lib: Fix a signed/unsigned warning
Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
This commit is contained in:
committed by
Jeremy Allison
parent
be381fd454
commit
1af086d23c
@ -588,7 +588,7 @@ static bool set_process_capability(enum smbd_capability capability,
|
|||||||
bool enable)
|
bool enable)
|
||||||
{
|
{
|
||||||
cap_value_t cap_vals[2] = {0};
|
cap_value_t cap_vals[2] = {0};
|
||||||
int num_cap_vals = 0;
|
size_t num_cap_vals = 0;
|
||||||
|
|
||||||
cap_t cap;
|
cap_t cap;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user