diff options
author | Rafal Szczesniak <mimir@samba.org> | 2006-09-25 05:03:08 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:20:19 -0500 |
commit | a33a56bb93808570f62503e7b7af21ec1c15d5e8 (patch) | |
tree | bdcd566c8335138332b7f451ab8e7665bb7ca294 | |
parent | 71f01b9fad1aafd0454697cccf030629a49d2134 (diff) | |
download | samba-a33a56bb93808570f62503e7b7af21ec1c15d5e8.tar.gz samba-a33a56bb93808570f62503e7b7af21ec1c15d5e8.tar.bz2 samba-a33a56bb93808570f62503e7b7af21ec1c15d5e8.zip |
r18890: sort the flags out and remove unknown as there's still
quite a few of them (not sure if these are used actually).
rafal
(This used to be commit 1622d4608bc738b73d6f51c758828f96602b3e59)
-rw-r--r-- | source4/librpc/idl/samr.idl | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/source4/librpc/idl/samr.idl b/source4/librpc/idl/samr.idl index 4824a58adc..a8b949e203 100644 --- a/source4/librpc/idl/samr.idl +++ b/source4/librpc/idl/samr.idl @@ -686,8 +686,11 @@ typedef [bitmap32bit] bitmap { SAMR_FIELD_ACCOUNT_NAME = 0x00000001, SAMR_FIELD_FULL_NAME = 0x00000002, + SAMR_FIELD_PRIMARY_GID = 0x00000008, SAMR_FIELD_DESCRIPTION = 0x00000010, SAMR_FIELD_COMMENT = 0x00000020, + SAMR_FIELD_HOME_DIRECTORY = 0x00000040, + SAMR_FIELD_HOME_DRIVE = 0x00000080, SAMR_FIELD_LOGON_SCRIPT = 0x00000100, SAMR_FIELD_PROFILE_PATH = 0x00000200, SAMR_FIELD_WORKSTATIONS = 0x00000400, @@ -697,12 +700,7 @@ SAMR_FIELD_COUNTRY_CODE = 0x00400000, SAMR_FIELD_CODE_PAGE = 0x00800000, SAMR_FIELD_PASSWORD = 0x01000000, /* either of these */ - SAMR_FIELD_PASSWORD2 = 0x02000000, /* two bits seems to work */ - SAMR_FIELD_HOME_DIRECTORY = 0x00000040, - SAMR_FIELD_HOME_DRIVE = 0x00000080, - SAMR_FIELD_PRIMARY_GID = 0x00000008, - SAMR_FIELD_UNKNOWN1 = 0x00080000, - SAMR_FIELD_UNKNOWN2 = 0x08000000 + SAMR_FIELD_PASSWORD2 = 0x02000000 /* two bits seems to work */ } samr_FieldsPresent; typedef struct { |