summaryrefslogtreecommitdiff
path: root/librpc
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2012-08-16 14:13:00 +1000
committerAndrew Bartlett <abartlet@samba.org>2012-08-16 15:19:17 +1000
commit2129495319adda28dbe21e1ac9846fcae9373989 (patch)
treebc87f85332e62e2b59c89ad1f4bf05965ddb615b /librpc
parent97e7c3b8bd84edd69f6344249b24ae64e2a8b0fe (diff)
downloadsamba-2129495319adda28dbe21e1ac9846fcae9373989.tar.gz
samba-2129495319adda28dbe21e1ac9846fcae9373989.tar.bz2
samba-2129495319adda28dbe21e1ac9846fcae9373989.zip
librpc/idl: Fix acl array definition in smb_acl_t
Diffstat (limited to 'librpc')
-rw-r--r--librpc/idl/smb_acl.idl2
1 files changed, 1 insertions, 1 deletions
diff --git a/librpc/idl/smb_acl.idl b/librpc/idl/smb_acl.idl
index 856312f484..7f672996b0 100644
--- a/librpc/idl/smb_acl.idl
+++ b/librpc/idl/smb_acl.idl
@@ -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;