From d6831f7dc2a3ee3620bfafb9b5914a87d6cec92d Mon Sep 17 00:00:00 2001 From: Alexander Bokovoy Date: Tue, 18 Mar 2014 19:41:38 +0200 Subject: [PATCH] lsa.idl: define lsa.ForestTrustCollisionInfo and ForestTrustCollisionRecord as public structs For Python bindings PIDL wants the struct to be defined as public if we want to use __ndr_print/pack/unpack. Define the [public] attribute to ForestTrustCollisionInfo/Record to allow easier debugging when there is collision in establishing a trust. --- librpc/idl/lsa.idl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/librpc/idl/lsa.idl b/librpc/idl/lsa.idl index d8f2649..80efbd5 100644 --- a/librpc/idl/lsa.idl +++ b/librpc/idl/lsa.idl @@ -1328,14 +1328,14 @@ import "misc.idl", "security.idl"; [default] uint32 flags; } lsa_ForestTrustCollisionFlags; - typedef struct { + typedef [public] struct { uint32 index; lsa_ForestTrustCollisionRecordType type; [switch_is(type)] lsa_ForestTrustCollisionFlags flags; lsa_String name; } lsa_ForestTrustCollisionRecord; - typedef struct { + typedef [public] struct { uint32 count; [size_is(count)] lsa_ForestTrustCollisionRecord **entries; } lsa_ForestTrustCollisionInfo; -- 1.8.5.3