From f598135c6b3dabd1435ea7eed5d8ab69dac97407 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Sun, 16 Oct 2005 23:47:09 +0000 Subject: r11105: Warn if conformant arrays are not at the end of a struct Support conformant [string] arrays Eliminate utf8string This breaks xattr binary compatibility with previous versions - is that a problem? (This used to be commit 7596c708ba6642473319a1b699a5a910a639e50d) --- source4/librpc/idl/drsuapi.idl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/librpc/idl/drsuapi.idl') diff --git a/source4/librpc/idl/drsuapi.idl b/source4/librpc/idl/drsuapi.idl index f900af9ce2..9711674581 100644 --- a/source4/librpc/idl/drsuapi.idl +++ b/source4/librpc/idl/drsuapi.idl @@ -430,7 +430,7 @@ interface drsuapi /* UnicodeString values */ typedef struct { [range(0,10485760)] uint32 length; - [subcontext(4)] nstring *string; + [size_is(length),charset(UTF16)] uint16 *string; } drsuapi_DsAttributeValueUnicodeString; typedef struct { -- cgit