diff options
author | Luke Leighton <lkcl@samba.org> | 1998-12-03 20:50:33 +0000 |
---|---|---|
committer | Luke Leighton <lkcl@samba.org> | 1998-12-03 20:50:33 +0000 |
commit | b99dc808df7e1a4d51145f4ce0bd89819b037dc4 (patch) | |
tree | e69b8d8b05c044d4908b63b930fbd0efa368a2a4 /source3/rpc_server | |
parent | f3787515d67b80a91786cfdd2fd2fb5972b4b094 (diff) | |
download | samba-b99dc808df7e1a4d51145f4ce0bd89819b037dc4.tar.gz samba-b99dc808df7e1a4d51145f4ce0bd89819b037dc4.tar.bz2 samba-b99dc808df7e1a4d51145f4ce0bd89819b037dc4.zip |
create domain group command (creategroup) added to rpcclient.
renamed do_samr_xxxx to samr_xxxx.
(This used to be commit 1e5d81c154740349a2cda4c1892b33a21c0683a8)
Diffstat (limited to 'source3/rpc_server')
-rw-r--r-- | source3/rpc_server/srv_samr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/rpc_server/srv_samr.c b/source3/rpc_server/srv_samr.c index 7bc12afe74..455b26318e 100644 --- a/source3/rpc_server/srv_samr.c +++ b/source3/rpc_server/srv_samr.c @@ -794,13 +794,13 @@ static void samr_reply_query_groupinfo(SAMR_Q_QUERY_GROUPINFO *q_u, if (q_u->switch_level == 1) { r_e.ptr = 1; - ctr.switch_value = 1; + ctr.switch_value1 = 1; make_samr_group_info1(&ctr.group.info1, "account name", "account description"); } else if (q_u->switch_level == 4) { r_e.ptr = 1; - ctr.switch_value = 4; + ctr.switch_value1 = 4; make_samr_group_info4(&ctr.group.info4, "account description"); } else |