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

librpc/idl: Fix acl array definition in smb_acl_t

This commit is contained in:
Andrew Bartlett 2012-08-16 14:13:00 +10:00
parent 97e7c3b8bd
commit 2129495319

View File

@ -52,7 +52,7 @@ interface smb_acl
int size;
int count;
int next;
smb_acl_entry *acl;
[size_is(count)] smb_acl_entry acl[*];
} smb_acl_t;
const int SMB_ACL_FIRST_ENTRY = 0;