diff options
author | Günther Deschner <gd@samba.org> | 2008-02-12 23:38:28 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-02-13 00:29:19 +0100 |
commit | 5b3fe8d63a65a9054db3ca18486ef719cc2cfcdb (patch) | |
tree | c4290b50f163c3507989f536dc356867866b2d08 /source3 | |
parent | e2b3aad8174daede0248ce96df624e575867cfd8 (diff) | |
download | samba-5b3fe8d63a65a9054db3ca18486ef719cc2cfcdb.tar.gz samba-5b3fe8d63a65a9054db3ca18486ef719cc2cfcdb.tar.bz2 samba-5b3fe8d63a65a9054db3ca18486ef719cc2cfcdb.zip |
Fix IDL for lsa_EnumTrustDom.
Guenther
(This used to be commit 278c891c54813ab802e1de300b498a0f9db79321)
Diffstat (limited to 'source3')
-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 b10dcd1144..305bab3d03 100644 --- a/source3/librpc/idl/lsa.idl +++ b/source3/librpc/idl/lsa.idl @@ -327,9 +327,9 @@ import "security.idl"; NTSTATUS lsa_EnumTrustDom ( [in] policy_handle *handle, - [in,out] uint32 *resume_handle, - [in] uint32 max_size, - [out] lsa_DomainList *domains + [in,out,ref] uint32 *resume_handle, + [out,ref] lsa_DomainList *domains, + [in] uint32 max_size ); |