diff options
author | Günther Deschner <gd@samba.org> | 2008-02-17 19:58:48 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-02-17 20:06:54 +0100 |
commit | c0dc198c6075de7b88c511810dba5194bf54bf0f (patch) | |
tree | 10fb6af3ab6cca7fe9d3f8273c4fb90280c2cab6 /source3/librpc/idl | |
parent | 10e93a92d335788adb98c8609f9dc672149977a9 (diff) | |
download | samba-c0dc198c6075de7b88c511810dba5194bf54bf0f.tar.gz samba-c0dc198c6075de7b88c511810dba5194bf54bf0f.tar.bz2 samba-c0dc198c6075de7b88c511810dba5194bf54bf0f.zip |
Fix IDL for lsa_LookupSids2.
Guenther
(This used to be commit 4d5d2fc8d537c5aaa4d1196cc145cb223e4ced4d)
Diffstat (limited to 'source3/librpc/idl')
-rw-r--r-- | source3/librpc/idl/lsa.idl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source3/librpc/idl/lsa.idl b/source3/librpc/idl/lsa.idl index c480ed1cc4..8d49f6084f 100644 --- a/source3/librpc/idl/lsa.idl +++ b/source3/librpc/idl/lsa.idl @@ -879,11 +879,11 @@ import "security.idl"; [public] NTSTATUS lsa_LookupSids2( [in] policy_handle *handle, - [in] lsa_SidArray *sids, - [out,unique] lsa_RefDomainList *domains, - [in,out] lsa_TransNameArray2 *names, + [in,ref] lsa_SidArray *sids, + [out,ref] lsa_RefDomainList **domains, + [in,out,ref] lsa_TransNameArray2 *names, [in] uint16 level, - [in,out] uint32 *count, + [in,out,ref] uint32 *count, [in] uint32 unknown1, [in] uint32 unknown2 ); |