1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00

libcli/security/display_sec.c - fix wrong counter type

This strictly needs to be of type "uint32_t" due to
"sec_acl->num_aces" which is of type "uint32_t".
This commit is contained in:
Matthias Dieter Wallnöfer 2011-02-16 09:12:17 +01:00
parent e37db96d2a
commit 055857a8d4

View File

@ -233,7 +233,7 @@ void display_sec_ace(struct security_ace *ace)
****************************************************************************/
void display_sec_acl(struct security_acl *sec_acl)
{
int i;
uint32_t i;
printf("\tACL\tNum ACEs:\t%u\trevision:\t%x\n",
sec_acl->num_aces, sec_acl->revision);