diff options
author | Günther Deschner <gd@samba.org> | 2008-02-14 15:20:47 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-02-14 15:22:33 +0100 |
commit | fbe577a67e16695a5aa6df536c13aae356c3b4fd (patch) | |
tree | 672f330b90d9e7514c523bb7fb173f324526bc69 /source3 | |
parent | d64ae7328ad3fdf587ec939f02189ff9439acea8 (diff) | |
download | samba-fbe577a67e16695a5aa6df536c13aae356c3b4fd.tar.gz samba-fbe577a67e16695a5aa6df536c13aae356c3b4fd.tar.bz2 samba-fbe577a67e16695a5aa6df536c13aae356c3b4fd.zip |
Fix IDL for lsa_RemoveAccountRights.
Guenther
(This used to be commit d65b2504de6e433e1ca3ea8aa839b4209dd1b99a)
Diffstat (limited to 'source3')
-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 aad9c3b9a1..47fa9f43b6 100644 --- a/source3/librpc/idl/lsa.idl +++ b/source3/librpc/idl/lsa.idl @@ -705,9 +705,9 @@ import "security.idl"; /* Function: 0x26 */ NTSTATUS lsa_RemoveAccountRights ( [in] policy_handle *handle, - [in] dom_sid2 *sid, - [in] uint32 unknown, - [in] lsa_RightSet *rights + [in,ref] dom_sid2 *sid, + [in] uint8 remove_all, + [in,ref] lsa_RightSet *rights ); /* Function: 0x27 */ |