diff options
author | Günther Deschner <gd@samba.org> | 2008-02-14 01:08:40 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-02-14 01:19:24 +0100 |
commit | 0b4dbfebaa64766829fc36866fe44c18a19b6a3d (patch) | |
tree | 1bbad927f84881898b8f89997104323885d04efa /source3/librpc/idl | |
parent | f292f3de3fc2f9afaa9fdf1f6d894e8fc5e01dd4 (diff) | |
download | samba-0b4dbfebaa64766829fc36866fe44c18a19b6a3d.tar.gz samba-0b4dbfebaa64766829fc36866fe44c18a19b6a3d.tar.bz2 samba-0b4dbfebaa64766829fc36866fe44c18a19b6a3d.zip |
Fix IDL for lsa_EnumAccounts.
Guenther
(This used to be commit d4744fe33fa99152f414e6e3a048eb9479f3d2b2)
Diffstat (limited to 'source3/librpc/idl')
-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 305bab3d03..6eb96a8b26 100644 --- a/source3/librpc/idl/lsa.idl +++ b/source3/librpc/idl/lsa.idl @@ -297,9 +297,9 @@ import "security.idl"; [public] NTSTATUS lsa_EnumAccounts ( [in] policy_handle *handle, - [in,out] uint32 *resume_handle, - [in,range(0,8192)] uint32 num_entries, - [out] lsa_SidArray *sids + [in,out,ref] uint32 *resume_handle, + [out,ref] lsa_SidArray *sids, + [in,range(0,8192)] uint32 num_entries ); |