From: Günther Deschner Date: Wed, 26 Mar 2008 18:25:54 +0000 (+0100) Subject: Fix IDL for netr_NETLOGON_INFO_2. X-Git-Tag: samba-3.3.0pre1~3097 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5d0aa3bbf8e56f5d2a1ab4d037d7fd146b095f9d;p=thirdparty%2Fsamba.git Fix IDL for netr_NETLOGON_INFO_2. W2k8 generated NT_STATUS_ARRAY_BOUNDS_EXCEEDED errors while validating trusts. Guenther --- diff --git a/source/librpc/idl/netlogon.idl b/source/librpc/idl/netlogon.idl index 59797017035..2a7b14c7e31 100644 --- a/source/librpc/idl/netlogon.idl +++ b/source/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;