From 52d32e08a4227909662a50a989633e9acd4bbb2f Mon Sep 17 00:00:00 2001 From: Matthieu Patou Date: Sat, 4 Sep 2010 00:39:16 +0400 Subject: [PATCH] idl: dfsblobs fix glitches in the implementation --- librpc/idl/dfsblobs.idl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/librpc/idl/dfsblobs.idl b/librpc/idl/dfsblobs.idl index 88147b638a26..6151c3f77b2c 100644 --- a/librpc/idl/dfsblobs.idl +++ b/librpc/idl/dfsblobs.idl @@ -59,7 +59,7 @@ interface dfsblobs typedef struct { [relative_short] nstring *special_name; uint16 nb_expanded_names; - [relative_short,subcontext(0),flag(STR_NOTERM|NDR_REMAINING)] string_array *expanded_names; + [relative_short,subcontext(0),flag(NDR_REMAINING|STR_NULLTERM)] string_array *expanded_names; } dfs_domain_referral; typedef [nodiscriminant] union { @@ -69,7 +69,7 @@ interface dfsblobs } dfs_referral; typedef [nodiscriminant] union { - [case(16)] uint8 *value; + [case(16)] uint8 value[16]; [default]; } dfs_padding; -- 2.34.1