diff options
author | Günther Deschner <gd@samba.org> | 2008-02-17 20:04:14 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-02-17 20:07:21 +0100 |
commit | 3f809ef84059912d3dd3cfbbd81eccea4562f582 (patch) | |
tree | 44457afe2ac5c5cb59bc2a817d31d28d1760081f /source3 | |
parent | b1cc1db24707d6e27c19d3d65e92924523eb6704 (diff) | |
download | samba-3f809ef84059912d3dd3cfbbd81eccea4562f582.tar.gz samba-3f809ef84059912d3dd3cfbbd81eccea4562f582.tar.bz2 samba-3f809ef84059912d3dd3cfbbd81eccea4562f582.zip |
Fix IDL for lsa_LookupSids3.
Guenther
(This used to be commit 4fe468786bedfb8bc03d5db1396a70379111f188)
Diffstat (limited to 'source3')
-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 773f36106c..3d8b68812f 100644 --- a/source3/librpc/idl/lsa.idl +++ b/source3/librpc/idl/lsa.idl @@ -1035,11 +1035,11 @@ import "security.idl"; /* Function 0x4c */ [public] NTSTATUS lsa_LookupSids3( - [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 ); |