diff options
author | Günther Deschner <gd@samba.org> | 2008-02-11 10:18:41 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-02-11 10:48:20 +0100 |
commit | 59c34d3b154518c10ef310712261e3f4536ff9ba (patch) | |
tree | 39ab3bed32857de6bedce4c4dc5779eac5d33274 /source3 | |
parent | cd50bc575e59517b53a1c8d0f273775b1ce85bac (diff) | |
download | samba-59c34d3b154518c10ef310712261e3f4536ff9ba.tar.gz samba-59c34d3b154518c10ef310712261e3f4536ff9ba.tar.bz2 samba-59c34d3b154518c10ef310712261e3f4536ff9ba.zip |
Fix IDL for lsa_EnumPrivs.
Guenther
(This used to be commit bd1dbdbe88e935d6aa5d0f2927f15c83abed27f6)
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 516b435257..53bf17de95 100644 --- a/source3/librpc/idl/lsa.idl +++ b/source3/librpc/idl/lsa.idl @@ -71,9 +71,9 @@ import "security.idl"; [public] NTSTATUS lsa_EnumPrivs ( [in] policy_handle *handle, - [in,out] uint32 *resume_handle, - [in] uint32 max_count, - [out] lsa_PrivArray *privs + [in,out,ref] uint32 *resume_handle, + [out,ref] lsa_PrivArray *privs, + [in] uint32 max_count ); /******************/ |