diff options
author | Günther Deschner <gd@samba.org> | 2008-02-17 20:03:53 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-02-17 20:07:14 +0100 |
commit | b1cc1db24707d6e27c19d3d65e92924523eb6704 (patch) | |
tree | 4493dcd7f74f101589d6c735254246cde07cc623 | |
parent | 6bff54c02e2fac2ea3eb46a8f357139fe55137b8 (diff) | |
download | samba-b1cc1db24707d6e27c19d3d65e92924523eb6704.tar.gz samba-b1cc1db24707d6e27c19d3d65e92924523eb6704.tar.bz2 samba-b1cc1db24707d6e27c19d3d65e92924523eb6704.zip |
Fix IDL for lsa_LookupNames3.
Guenther
(This used to be commit 6e21a5c3bb6e88ee9c9743094822fb7161f09952)
-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 aaee35e1d6..773f36106c 100644 --- a/source3/librpc/idl/lsa.idl +++ b/source3/librpc/idl/lsa.idl @@ -960,10 +960,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_TransSidArray3 *sids, + [out,ref] lsa_RefDomainList *domains, + [in,out,ref] lsa_TransSidArray3 *sids, [in] lsa_LookupNamesLevel level, - [in,out] uint32 *count, + [in,out,ref] uint32 *count, [in] uint32 unknown1, [in] uint32 unknown2 ); |