diff options
author | Günther Deschner <gd@samba.org> | 2008-12-12 22:55:33 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-12-17 23:06:48 +0100 |
commit | 7317bc1eba18fe1e06186ccd14198d7561383c4f (patch) | |
tree | 819bcdeb9ba0eec5b5e76500ef5e748b24db8bc9 | |
parent | ef6bf7f385f10d1015e8c5692f71ea98b0b84d22 (diff) | |
download | samba-7317bc1eba18fe1e06186ccd14198d7561383c4f.tar.gz samba-7317bc1eba18fe1e06186ccd14198d7561383c4f.tar.bz2 samba-7317bc1eba18fe1e06186ccd14198d7561383c4f.zip |
netlogon: fix IDL for netr_LogonControl2Ex.
Guenther
-rw-r--r-- | librpc/idl/netlogon.idl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/librpc/idl/netlogon.idl b/librpc/idl/netlogon.idl index 1df5f66c67..c08ef1b636 100644 --- a/librpc/idl/netlogon.idl +++ b/librpc/idl/netlogon.idl @@ -1021,9 +1021,9 @@ interface netlogon WERROR netr_LogonControl2Ex( [in,unique] [string,charset(UTF16)] uint16 *logon_server, - [in] uint32 function_code, + [in] netr_LogonControlCode function_code, [in] uint32 level, - [in][switch_is(function_code)] netr_CONTROL_DATA_INFORMATION data, + [in,ref][switch_is(function_code)] netr_CONTROL_DATA_INFORMATION *data, [out,ref][switch_is(level)] netr_CONTROL_QUERY_INFORMATION *query ); |