diff options
author | Luke Leighton <lkcl@samba.org> | 1999-11-09 17:39:21 +0000 |
---|---|---|
committer | Luke Leighton <lkcl@samba.org> | 1999-11-09 17:39:21 +0000 |
commit | 97398b4c7433b449b074373a7f552c58854c7a49 (patch) | |
tree | c08ba850159a13ce8daea7bbf80a83960cb84786 /source3/rpcclient | |
parent | 702b085293af8ffe7a04865db78a36c85beb22ee (diff) | |
download | samba-97398b4c7433b449b074373a7f552c58854c7a49.tar.gz samba-97398b4c7433b449b074373a7f552c58854c7a49.tar.bz2 samba-97398b4c7433b449b074373a7f552c58854c7a49.zip |
riccardo sibilia spotted line 1884 has uint32 group_rid[0] not group_rid[1]
oops!
(This used to be commit ea1d5af105cc0df8d6523d0a734827ee47e1f58c)
Diffstat (limited to 'source3/rpcclient')
-rw-r--r-- | source3/rpcclient/cmd_samr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/rpcclient/cmd_samr.c b/source3/rpcclient/cmd_samr.c index 7b5837acca..1327099aac 100644 --- a/source3/rpcclient/cmd_samr.c +++ b/source3/rpcclient/cmd_samr.c @@ -1881,7 +1881,7 @@ void cmd_sam_add_groupmem(struct client_info *info) BOOL res3 = True; BOOL res4 = True; uint32 ace_perms = 0x02000000; /* absolutely no idea. */ - uint32 group_rid[0]; + uint32 group_rid[1]; uint32 group_type[1]; char **names = NULL; uint32 num_names = 0; |