diff options
author | Günther Deschner <gd@samba.org> | 2008-03-26 19:25:54 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-03-26 19:25:54 +0100 |
commit | 62f06542dcc130fa62f5c2c599429353dabc5dd2 (patch) | |
tree | 2fbc58df74c1948f5b92d657ad78cda7b75998a5 | |
parent | 63b49e1f6e166f9a884fed810294bdc3f0b8c0d2 (diff) | |
download | samba-62f06542dcc130fa62f5c2c599429353dabc5dd2.tar.gz samba-62f06542dcc130fa62f5c2c599429353dabc5dd2.tar.bz2 samba-62f06542dcc130fa62f5c2c599429353dabc5dd2.zip |
Fix IDL for netr_NETLOGON_INFO_2.
W2k8 generated NT_STATUS_ARRAY_BOUNDS_EXCEEDED errors while validating trusts.
Guenther
(This used to be commit 5d0aa3bbf8e56f5d2a1ab4d037d7fd146b095f9d)
-rw-r--r-- | source3/librpc/idl/netlogon.idl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/librpc/idl/netlogon.idl b/source3/librpc/idl/netlogon.idl index 5979701703..2a7b14c7e3 100644 --- a/source3/librpc/idl/netlogon.idl +++ b/source3/librpc/idl/netlogon.idl @@ -776,7 +776,7 @@ interface netlogon typedef struct { uint32 flags; uint32 pdc_connection_status; - [string,charset(UTF16)] uint16 trusted_dc_name[]; + [string,charset(UTF16)] uint16 *trusted_dc_name; uint32 tc_connection_status; } netr_NETLOGON_INFO_2; |