From 5a1779b982569201decc8a09765d5361212813d7 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Fri, 14 Nov 2003 21:39:13 +0000 Subject: it turns out that all MS servers ignore the artifact struct_len fields in OpenPolicy and OpenPolicy2, so we don't in fact need the [struct_len] attribute. This makes our IDL much closer to the MS IDL. (This used to be commit f0a8f063a680b5d0a68c5ac7cccf9c9a13adfb81) --- source4/librpc/idl/lsa.idl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source4/librpc/idl/lsa.idl') diff --git a/source4/librpc/idl/lsa.idl b/source4/librpc/idl/lsa.idl index e86ff5f4d3..9e703d6c26 100644 --- a/source4/librpc/idl/lsa.idl +++ b/source4/librpc/idl/lsa.idl @@ -67,14 +67,14 @@ /******************/ /* Function: 0x06 */ typedef struct { - [struct_len] uint32 _len; + uint32 len; /* ignored */ uint16 impersonation_level; uint8 context_mode; uint8 effective_only; } lsa_QosInfo; typedef struct { - [struct_len] uint32 _len; + uint32 len; /* ignored */ uint8 *root_dir; unistr *object_name; uint32 attributes; -- cgit