diff options
author | Günther Deschner <gd@samba.org> | 2008-04-08 22:52:26 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-04-08 22:52:26 +0200 |
commit | d1790aa50d79a8e7c05fda4add11ae35be34a8bb (patch) | |
tree | 8d6757306fd8c220108ce571a8635fb4c4f43839 /source3/librpc | |
parent | 61dbda8facf645929eabbe1772b6b1c595356577 (diff) | |
download | samba-d1790aa50d79a8e7c05fda4add11ae35be34a8bb.tar.gz samba-d1790aa50d79a8e7c05fda4add11ae35be34a8bb.tar.bz2 samba-d1790aa50d79a8e7c05fda4add11ae35be34a8bb.zip |
Fix IDL for lsa_QueryTrustedDomainInfoBySid.
Guenther
(This used to be commit 7903103c70119d28b9d73cc340a1d85d04313b83)
Diffstat (limited to 'source3/librpc')
-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 217ef05a71..531b754ed4 100644 --- a/source3/librpc/idl/lsa.idl +++ b/source3/librpc/idl/lsa.idl @@ -745,9 +745,9 @@ import "security.idl"; /* Function: 0x27 */ NTSTATUS lsa_QueryTrustedDomainInfoBySid( [in] policy_handle *handle, - [in] dom_sid2 *dom_sid, - [in] lsa_TrustDomInfoEnum level, - [out,switch_is(level),unique] lsa_TrustedDomainInfo *info + [in,ref] dom_sid2 *dom_sid, + [in] lsa_TrustDomInfoEnum level, + [out,switch_is(level),ref] lsa_TrustedDomainInfo **info ); /* Function: 0x28 */ |