diff options
author | Tim Potter <tpot@samba.org> | 2005-01-26 04:34:16 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:09:12 -0500 |
commit | 9eea1eb94fff7b36f695de8c4f86d990e4ed22a9 (patch) | |
tree | f37489eb3f08d02e63703bd347d0233e4379b835 /source4/librpc/idl/netlogon.idl | |
parent | 0b673687e5207e90f45ee6014d7cdac067093dd7 (diff) | |
download | samba-9eea1eb94fff7b36f695de8c4f86d990e4ed22a9.tar.gz samba-9eea1eb94fff7b36f695de8c4f86d990e4ed22a9.tar.bz2 samba-9eea1eb94fff7b36f695de8c4f86d990e4ed22a9.zip |
r5005: Add missing size specifiers to various bitmaps.
(This used to be commit 19a907cb58f9ec58c5eea12e7979134976c0c469)
Diffstat (limited to 'source4/librpc/idl/netlogon.idl')
-rw-r--r-- | source4/librpc/idl/netlogon.idl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/librpc/idl/netlogon.idl b/source4/librpc/idl/netlogon.idl index e03242243f..3d3005685b 100644 --- a/source4/librpc/idl/netlogon.idl +++ b/source4/librpc/idl/netlogon.idl @@ -1096,7 +1096,7 @@ interface netlogon /****************/ /* Function 0x28 */ - typedef bitmap { + typedef [bitmap32bit] bitmap { NETR_TRUST_FLAG_IN_FOREST = 0x00000001, NETR_TRUST_FLAG_OUTBOUND = 0x00000002, NETR_TRUST_FLAG_TREEROOT = 0x00000004, @@ -1112,7 +1112,7 @@ interface netlogon NETR_TRUST_TYPE_DCE = 4 } netr_TrustType; - typedef bitmap { + typedef [bitmap32bit] bitmap { NETR_TRUST_ATTRIBUTE_NON_TRANSITIVE = 0x00000001, NETR_TRUST_ATTRIBUTE_UPLEVEL_ONLY = 0x00000002, NETR_TRUST_ATTRIBUTE_QUARANTINED_DOMAIN = 0x00000004, |