diff options
author | Günther Deschner <gd@samba.org> | 2008-02-09 01:33:47 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-02-09 02:05:39 +0100 |
commit | da3e2d4c2797a9ea43312ba7bdb5bc9710c94004 (patch) | |
tree | 00c5dbdb0ab9cf45028eb5a067716b2a2be4b9e2 /source3/librpc/idl/lsa.idl | |
parent | c7f34889591174ae335a37ab62747afab8fc418c (diff) | |
download | samba-da3e2d4c2797a9ea43312ba7bdb5bc9710c94004.tar.gz samba-da3e2d4c2797a9ea43312ba7bdb5bc9710c94004.tar.bz2 samba-da3e2d4c2797a9ea43312ba7bdb5bc9710c94004.zip |
Testing revealed some errors, reverting some of the lsa changes.
Guenther
(This used to be commit ac1e4f1eb2c046def4fa30ab0bd98c49add8e8c8)
Diffstat (limited to 'source3/librpc/idl/lsa.idl')
-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 df1da31c97..516b435257 100644 --- a/source3/librpc/idl/lsa.idl +++ b/source3/librpc/idl/lsa.idl @@ -278,7 +278,7 @@ import "security.idl"; [in] policy_handle *handle, [in,ref] dom_sid2 *sid, [in] uint32 access_mask, - [out] policy_handle **acct_handle + [out] policy_handle *acct_handle ); /******************/ @@ -429,11 +429,11 @@ import "security.idl"; /*****************************************/ /* Function: 0x11 */ - NTSTATUS lsa_OpenAccount ( + NTSTATUS lsa_OpenAccount( [in] policy_handle *handle, [in,ref] dom_sid2 *sid, [in] uint32 access_mask, - [out] policy_handle **acct_handle + [out] policy_handle *acct_handle ); @@ -664,7 +664,7 @@ import "security.idl"; /* Function: 0x22 */ NTSTATUS lsa_DeleteObject( - [in,out] policy_handle **handle + [in,out] policy_handle *handle ); /*******************/ |