diff options
author | Luke Leighton <lkcl@samba.org> | 1999-03-09 01:17:16 +0000 |
---|---|---|
committer | Luke Leighton <lkcl@samba.org> | 1999-03-09 01:17:16 +0000 |
commit | b6db424576c47ebd0ad1fcb31343a90a35889311 (patch) | |
tree | aefc5fd2d7b179a7e08a02215b49446ae4a668d6 /source3 | |
parent | 8cf03d5a39fa4721f5fd00044bdd33a974e0410c (diff) | |
download | samba-b6db424576c47ebd0ad1fcb31343a90a35889311.tar.gz samba-b6db424576c47ebd0ad1fcb31343a90a35889311.tar.bz2 samba-b6db424576c47ebd0ad1fcb31343a90a35889311.zip |
reverted access control flags in enum commands.
(This used to be commit 97a0b24955b45e434e34510f65afdde7bfdf3183)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/rpcclient/cmd_samr.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/rpcclient/cmd_samr.c b/source3/rpcclient/cmd_samr.c index 2caa11bdd4..ed66962a82 100644 --- a/source3/rpcclient/cmd_samr.c +++ b/source3/rpcclient/cmd_samr.c @@ -1192,7 +1192,7 @@ void cmd_sam_enum_users(struct client_info *info) uint16 unk_0 = 0x0; uint16 acb_mask = 0; uint16 unk_1 = 0x0; - uint32 flags = 0x02000000; /* maximum allowed. */ + uint32 flags = 0x304; /* access control permissions */ fstring tmp; int i; @@ -1531,7 +1531,7 @@ void cmd_sam_enum_aliases(struct client_info *info) DOM_SID sid1; BOOL res = True; BOOL request_member_info = False; - uint32 flags = 0x02000000; /* maximum allowed. */ + uint32 flags = 0x200003f3; /* access control permissions */ fstring tmp; uint32 alias_idx; @@ -1740,7 +1740,7 @@ void cmd_sam_enum_groups(struct client_info *info) DOM_SID sid1; BOOL res = True; BOOL request_member_info = False; - uint32 flags = 0x02000000; /* maximum allowed. */ + uint32 flags = 0x200003f3; /* access control permissions. */ fstring tmp; uint32 group_idx; |