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/samr.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/samr.idl')
-rw-r--r-- | source4/librpc/idl/samr.idl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/librpc/idl/samr.idl b/source4/librpc/idl/samr.idl index 89a06112a7..fd6229bf63 100644 --- a/source4/librpc/idl/samr.idl +++ b/source4/librpc/idl/samr.idl @@ -16,7 +16,7 @@ ] interface samr { /* account control (acct_flags) bits */ - typedef [public] bitmap { + typedef [public,bitmap32bit] bitmap { ACB_DISABLED = 0x00000001, /* 1 = User account disabled */ ACB_HOMDIRREQ = 0x00000002, /* 1 = Home directory required */ ACB_PWNOTREQ = 0x00000004, /* 1 = User password not required */ @@ -664,7 +664,7 @@ } samr_UserInfo20; /* this defines the bits used for fields_present in info21 */ - typedef bitmap { + typedef [bitmap32bit] bitmap { SAMR_FIELD_NAME = 0x00000002, SAMR_FIELD_DESCRIPTION = 0x00000010, SAMR_FIELD_COMMENT = 0x00000020, |