diff options
author | Günther Deschner <gd@samba.org> | 2008-10-30 09:29:17 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-11-04 02:45:36 +0100 |
commit | 9dd4abd780db9f6a219bd01b774836ea37b08221 (patch) | |
tree | eb907d08697d4f3616765b1b431ef9a1583f8473 /librpc | |
parent | 2efacde8c4346130227728f11a98481ed1e01515 (diff) | |
download | samba-9dd4abd780db9f6a219bd01b774836ea37b08221.tar.gz samba-9dd4abd780db9f6a219bd01b774836ea37b08221.tar.bz2 samba-9dd4abd780db9f6a219bd01b774836ea37b08221.zip |
netlogon: fix IDL for netr_DatabaseRedo.
Guenther
Diffstat (limited to 'librpc')
-rw-r--r-- | librpc/idl/netlogon.idl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/librpc/idl/netlogon.idl b/librpc/idl/netlogon.idl index c89cf37ee7..0561f5becd 100644 --- a/librpc/idl/netlogon.idl +++ b/librpc/idl/netlogon.idl @@ -961,11 +961,11 @@ interface netlogon NTSTATUS netr_DatabaseRedo( [in] [string,charset(UTF16)] uint16 logon_server[], [in] [string,charset(UTF16)] uint16 computername[], - [in] netr_Authenticator credential, + [in] netr_Authenticator *credential, [in,out,ref] netr_Authenticator *return_authenticator, - [in,unique][size_is(change_log_entry_size)] uint8 *change_log_entry, + [in,ref][size_is(change_log_entry_size)] uint8 *change_log_entry, [in] uint32 change_log_entry_size, - [out,ref] netr_DELTA_ENUM_ARRAY *delta_enum_array + [out,ref] netr_DELTA_ENUM_ARRAY **delta_enum_array ); |