summaryrefslogtreecommitdiff
path: root/source3/rpc_server/srv_lsa.c
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2008-02-14 15:20:18 +0100
committerGünther Deschner <gd@samba.org>2008-02-14 15:22:33 +0100
commit10462a5a795fe357c6487a85fedcb23adf8ab886 (patch)
tree864e755ebe05ab3a7773ea2574e6ba2953626a96 /source3/rpc_server/srv_lsa.c
parent1592cc3df2a38d47f5e215b12ef5fff3698561b4 (diff)
downloadsamba-10462a5a795fe357c6487a85fedcb23adf8ab886.tar.gz
samba-10462a5a795fe357c6487a85fedcb23adf8ab886.tar.bz2
samba-10462a5a795fe357c6487a85fedcb23adf8ab886.zip
Use pidl for _lsa_RemoveAccountRights.
Guenther (This used to be commit 39f8508f5d978a936779fdfd51b90fec4faa4301)
Diffstat (limited to 'source3/rpc_server/srv_lsa.c')
-rw-r--r--source3/rpc_server/srv_lsa.c24
1 files changed, 1 insertions, 23 deletions
diff --git a/source3/rpc_server/srv_lsa.c b/source3/rpc_server/srv_lsa.c
index 14cf0b3cc9..dfb3323873 100644
--- a/source3/rpc_server/srv_lsa.c
+++ b/source3/rpc_server/srv_lsa.c
@@ -285,29 +285,7 @@ static bool api_lsa_add_acct_rights(pipes_struct *p)
static bool api_lsa_remove_acct_rights(pipes_struct *p)
{
- LSA_Q_REMOVE_ACCT_RIGHTS q_u;
- LSA_R_REMOVE_ACCT_RIGHTS r_u;
-
- prs_struct *data = &p->in_data.data;
- prs_struct *rdata = &p->out_data.rdata;
-
- ZERO_STRUCT(q_u);
- ZERO_STRUCT(r_u);
-
- if(!lsa_io_q_remove_acct_rights("", &q_u, data, 0)) {
- DEBUG(0,("api_lsa_remove_acct_rights: failed to unmarshall LSA_Q_REMOVE_ACCT_RIGHTS.\n"));
- return False;
- }
-
- r_u.status = _lsa_remove_acct_rights(p, &q_u, &r_u);
-
- /* store the response in the SMB stream */
- if(!lsa_io_r_remove_acct_rights("", &r_u, rdata, 0)) {
- DEBUG(0,("api_lsa_remove_acct_rights: Failed to marshall LSA_R_REMOVE_ACCT_RIGHTS.\n"));
- return False;
- }
-
- return True;
+ return proxy_lsa_call(p, NDR_LSA_REMOVEACCOUNTRIGHTS);
}
/***************************************************************************