diff options
author | Andrew Tridgell <tridge@samba.org> | 2003-11-14 21:39:13 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2003-11-14 21:39:13 +0000 |
commit | 5a1779b982569201decc8a09765d5361212813d7 (patch) | |
tree | dedcf4e90ff7a2455135fe2c61591e0fbac4e33e /source4/librpc/idl | |
parent | f147a707955d3c57ecd0ecc7e19307adb2aed02b (diff) | |
download | samba-5a1779b982569201decc8a09765d5361212813d7.tar.gz samba-5a1779b982569201decc8a09765d5361212813d7.tar.bz2 samba-5a1779b982569201decc8a09765d5361212813d7.zip |
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)
Diffstat (limited to 'source4/librpc/idl')
-rw-r--r-- | source4/librpc/idl/dfs.idl | 2 | ||||
-rw-r--r-- | source4/librpc/idl/lsa.idl | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/source4/librpc/idl/dfs.idl b/source4/librpc/idl/dfs.idl index 107a7d7a53..1fb16b60ca 100644 --- a/source4/librpc/idl/dfs.idl +++ b/source4/librpc/idl/dfs.idl @@ -34,7 +34,7 @@ /******************/ /* Function: 0x03 */ - NTSTATUS dfs_UNKNOWN3 (); + NTSTATUS dfs_SetInfo (); /******************/ /* Function: 0x04 */ 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; |