diff options
author | Günther Deschner <gd@samba.org> | 2008-02-08 18:18:26 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-02-08 22:36:39 +0100 |
commit | 3df409f37caafdd27c7e05767aded460173af1c4 (patch) | |
tree | 102df5e066fedbc91b33012526b1601cbe98eb0c | |
parent | 114596b9669239625c38e763c17f6aed76dd96c0 (diff) | |
download | samba-3df409f37caafdd27c7e05767aded460173af1c4.tar.gz samba-3df409f37caafdd27c7e05767aded460173af1c4.tar.bz2 samba-3df409f37caafdd27c7e05767aded460173af1c4.zip |
Fix IDL for lsa_CreateAccount.
Guenther
(This used to be commit f129feecdb927c70c949bc547d2ae6cdfc5e88d4)
-rw-r--r-- | source3/librpc/idl/lsa.idl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/librpc/idl/lsa.idl b/source3/librpc/idl/lsa.idl index 9879d14b82..fc36689a19 100644 --- a/source3/librpc/idl/lsa.idl +++ b/source3/librpc/idl/lsa.idl @@ -276,9 +276,9 @@ import "security.idl"; /* Function: 0x0a */ [public] NTSTATUS lsa_CreateAccount ( [in] policy_handle *handle, - [in] dom_sid2 *sid, + [in,ref] dom_sid2 *sid, [in] uint32 access_mask, - [out] policy_handle *acct_handle + [out] policy_handle **acct_handle ); /******************/ |