diff options
author | Günther Deschner <gd@samba.org> | 2008-02-01 00:39:06 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-02-01 09:57:10 +0100 |
commit | 645559990f03c4ca702c472f9344343e78b4385f (patch) | |
tree | 6524078ced3b2df9db763a02b241424ac752ee10 /source3/rpc_server/srv_samr.c | |
parent | fd15e9dd1c784220f8666083e2fa0bb9c75e7755 (diff) | |
download | samba-645559990f03c4ca702c472f9344343e78b4385f.tar.gz samba-645559990f03c4ca702c472f9344343e78b4385f.tar.bz2 samba-645559990f03c4ca702c472f9344343e78b4385f.zip |
Use pidl for _samr_OpenUser().
Guenther
(This used to be commit ea3a096bcdc42fd4a86be5df3e8f9745e99970ff)
Diffstat (limited to 'source3/rpc_server/srv_samr.c')
-rw-r--r-- | source3/rpc_server/srv_samr.c | 23 |
1 files changed, 1 insertions, 22 deletions
diff --git a/source3/rpc_server/srv_samr.c b/source3/rpc_server/srv_samr.c index 9319d422da..0627a07397 100644 --- a/source3/rpc_server/srv_samr.c +++ b/source3/rpc_server/srv_samr.c @@ -417,28 +417,7 @@ static bool api_samr_lookup_rids(pipes_struct *p) static bool api_samr_open_user(pipes_struct *p) { - SAMR_Q_OPEN_USER q_u; - SAMR_R_OPEN_USER 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(!samr_io_q_open_user("", &q_u, data, 0)) { - DEBUG(0,("api_samr_open_user: unable to unmarshall SAMR_Q_OPEN_USER.\n")); - return False; - } - - r_u.status = _samr_open_user(p, &q_u, &r_u); - - /* store the response in the SMB stream */ - if(!samr_io_r_open_user("", &r_u, rdata, 0)) { - DEBUG(0,("api_samr_open_user: unable to marshall SAMR_R_OPEN_USER.\n")); - return False; - } - - return True; + return proxy_samr_call(p, NDR_SAMR_OPENUSER); } /******************************************************************* |