diff options
author | Andrew Tridgell <tridge@samba.org> | 2003-11-12 05:34:21 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2003-11-12 05:34:21 +0000 |
commit | 6714815f014ae1b31d0675214d023e3afe2389f0 (patch) | |
tree | 386065e7ba271b3fad572d0fab4605bdd7878fca /source4/librpc/ndr/ndr_lsa.h | |
parent | 6735b72a8d0a8e0be274208c84b65db2fa33d2a0 (diff) | |
download | samba-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/ndr/ndr_lsa.h')
-rw-r--r-- | source4/librpc/ndr/ndr_lsa.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/librpc/ndr/ndr_lsa.h b/source4/librpc/ndr/ndr_lsa.h index bf642872e2..b502064bbf 100644 --- a/source4/librpc/ndr/ndr_lsa.h +++ b/source4/librpc/ndr/ndr_lsa.h @@ -406,6 +406,7 @@ struct lsa_LUIDAttribute { struct lsa_PrivilegeSet { uint32 count; struct lsa_LUIDAttribute *set; + uint32 unknown[1]; }; struct lsa_EnumPrivsAccount { @@ -415,7 +416,6 @@ struct lsa_EnumPrivsAccount { struct { struct lsa_PrivilegeSet *privs; - uint32 unknown; NTSTATUS result; } out; |