diff options
author | Günther Deschner <gd@samba.org> | 2008-02-17 20:03:12 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-02-17 20:07:05 +0100 |
commit | 6bff54c02e2fac2ea3eb46a8f357139fe55137b8 (patch) | |
tree | 0887cbb1040bdbf9656f2bda03b45f7e6af0b65d | |
parent | c0dc198c6075de7b88c511810dba5194bf54bf0f (diff) | |
download | samba-6bff54c02e2fac2ea3eb46a8f357139fe55137b8.tar.gz samba-6bff54c02e2fac2ea3eb46a8f357139fe55137b8.tar.bz2 samba-6bff54c02e2fac2ea3eb46a8f357139fe55137b8.zip |
Fix IDL for lsa_LookupNames2.
Guenther
(This used to be commit 088a9f21b2a37acdf9a43128252db23d3222ec7c)
-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 8d49f6084f..aaee35e1d6 100644 --- a/source3/librpc/idl/lsa.idl +++ b/source3/librpc/idl/lsa.idl @@ -907,10 +907,10 @@ import "security.idl"; [in] policy_handle *handle, [in,range(0,1000)] uint32 num_names, [in,size_is(num_names)] lsa_String names[], - [out,unique] lsa_RefDomainList *domains, - [in,out] lsa_TransSidArray2 *sids, + [out,ref] lsa_RefDomainList **domains, + [in,out,ref] lsa_TransSidArray2 *sids, [in] lsa_LookupNamesLevel level, - [in,out] uint32 *count, + [in,out,ref] uint32 *count, [in] uint32 unknown1, [in] uint32 unknown2 ); |