diff options
author | Günther Deschner <gd@samba.org> | 2008-02-14 14:22:25 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-02-14 14:40:26 +0100 |
commit | 3329432d1f6e9dab31a970b2b407374c144d68ba (patch) | |
tree | 540eb88936c9dfd397bf8570e68787a16e85ad77 | |
parent | b09b3ac8f88d7b89501193efca3615518218d6f1 (diff) | |
download | samba-3329432d1f6e9dab31a970b2b407374c144d68ba.tar.gz samba-3329432d1f6e9dab31a970b2b407374c144d68ba.tar.bz2 samba-3329432d1f6e9dab31a970b2b407374c144d68ba.zip |
Fix IDL for lsa_AddAccountRights.
Guenther
(This used to be commit 7319986a3e9a640ea2d605dc7a2104f43f74f8a2)
-rw-r--r-- | source3/librpc/idl/lsa.idl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/librpc/idl/lsa.idl b/source3/librpc/idl/lsa.idl index 6bb34a9dc5..df948bc68e 100644 --- a/source3/librpc/idl/lsa.idl +++ b/source3/librpc/idl/lsa.idl @@ -682,7 +682,7 @@ import "security.idl"; } lsa_RightAttribute; typedef struct { - uint32 count; + [range(0,256)] uint32 count; [size_is(count)] lsa_StringLarge *names; } lsa_RightSet; @@ -697,8 +697,8 @@ import "security.idl"; /* Function: 0x25 */ NTSTATUS lsa_AddAccountRights ( [in] policy_handle *handle, - [in] dom_sid2 *sid, - [in] lsa_RightSet *rights + [in,ref] dom_sid2 *sid, + [in,ref] lsa_RightSet *rights ); /**********************/ |