summaryrefslogtreecommitdiff
path: root/source3/librpc
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2008-02-17 19:58:18 +0100
committerGünther Deschner <gd@samba.org>2008-02-17 20:06:46 +0100
commit10e93a92d335788adb98c8609f9dc672149977a9 (patch)
tree63051eec09a06f10d0460d3b6742c66842a67cb1 /source3/librpc
parentfa00695d46f195155e13ad47f3f402e28be2ca4a (diff)
downloadsamba-10e93a92d335788adb98c8609f9dc672149977a9.tar.gz
samba-10e93a92d335788adb98c8609f9dc672149977a9.tar.bz2
samba-10e93a92d335788adb98c8609f9dc672149977a9.zip
Fix IDL for lsa_LookupSids.
Guenther (This used to be commit 10f2cddfd529fcd538a09cc92eb3f99619742c44)
Diffstat (limited to 'source3/librpc')
-rw-r--r--source3/librpc/idl/lsa.idl8
1 files changed, 4 insertions, 4 deletions
diff --git a/source3/librpc/idl/lsa.idl b/source3/librpc/idl/lsa.idl
index 62169bafe5..c480ed1cc4 100644
--- a/source3/librpc/idl/lsa.idl
+++ b/source3/librpc/idl/lsa.idl
@@ -410,11 +410,11 @@ import "security.idl";
[public] NTSTATUS lsa_LookupSids (
[in] policy_handle *handle,
- [in] lsa_SidArray *sids,
- [out,unique] lsa_RefDomainList *domains,
- [in,out] lsa_TransNameArray *names,
+ [in,ref] lsa_SidArray *sids,
+ [out,ref] lsa_RefDomainList **domains,
+ [in,out,ref] lsa_TransNameArray *names,
[in] uint16 level,
- [in,out] uint32 *count
+ [in,out,ref] uint32 *count
);