summaryrefslogtreecommitdiff
path: root/source4/librpc/idl/lsa.idl
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2003-11-12 05:34:21 +0000
committerAndrew Tridgell <tridge@samba.org>2003-11-12 05:34:21 +0000
commit6714815f014ae1b31d0675214d023e3afe2389f0 (patch)
tree386065e7ba271b3fad572d0fab4605bdd7878fca /source4/librpc/idl/lsa.idl
parent6735b72a8d0a8e0be274208c84b65db2fa33d2a0 (diff)
downloadsamba-6714815f014ae1b31d0675214d023e3afe2389f0.tar.gz
samba-6714815f014ae1b31d0675214d023e3afe2389f0.tar.bz2
samba-6714815f014ae1b31d0675214d023e3afe2389f0.zip
lsa_PrivilegeSet seems to be a very strange beast indeed. It has a
constant sized array of size 1 at the end? (This used to be commit 2cc354bd82456cb5598eb4acb40a5ada1459d08d)
Diffstat (limited to 'source4/librpc/idl/lsa.idl')
-rw-r--r--source4/librpc/idl/lsa.idl4
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/librpc/idl/lsa.idl b/source4/librpc/idl/lsa.idl
index fb572ae522..38f66f37e6 100644
--- a/source4/librpc/idl/lsa.idl
+++ b/source4/librpc/idl/lsa.idl
@@ -335,12 +335,12 @@
typedef struct {
uint32 count;
[size_is(count)] lsa_LUIDAttribute set[*];
+ uint32 unknown[1];
} lsa_PrivilegeSet;
NTSTATUS lsa_EnumPrivsAccount (
[in,ref] policy_handle *handle,
- [out] lsa_PrivilegeSet *privs,
- [out] uint32 unknown
+ [out] lsa_PrivilegeSet *privs
);