summaryrefslogtreecommitdiff
path: root/source3/rpc_server/srv_lsa.c
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2008-02-04 21:00:38 +0100
committerGünther Deschner <gd@samba.org>2008-02-04 22:12:40 +0100
commit6a77f8d2d9333b33d4721a8b4043b5f58a9c0bb4 (patch)
tree35a1977749c53efec23f4a0eaff3c9ea3b3ff8fb /source3/rpc_server/srv_lsa.c
parentc6eddfee89891e0d37031e5bf50a66e31b7db67d (diff)
downloadsamba-6a77f8d2d9333b33d4721a8b4043b5f58a9c0bb4.tar.gz
samba-6a77f8d2d9333b33d4721a8b4043b5f58a9c0bb4.tar.bz2
samba-6a77f8d2d9333b33d4721a8b4043b5f58a9c0bb4.zip
Use pidl for _lsa_OpenPolicy2().
Guenther (This used to be commit fc29364abe10d3ec249602cb3437e50294f5de76)
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 7a5eca4e0f..5084bf915c 100644
--- a/source3/rpc_server/srv_lsa.c
+++ b/source3/rpc_server/srv_lsa.c
@@ -52,29 +52,7 @@ static bool proxy_lsa_call(pipes_struct *p, uint8 opnum)
static bool api_lsa_open_policy2(pipes_struct *p)
{
- LSA_Q_OPEN_POL2 q_u;
- LSA_R_OPEN_POL2 r_u;
- prs_struct *data = &p->in_data.data;
- prs_struct *rdata = &p->out_data.rdata;
-
- ZERO_STRUCT(q_u);
- ZERO_STRUCT(r_u);
-
- /* grab the server, object attributes and desired access flag...*/
- if(!lsa_io_q_open_pol2("", &q_u, data, 0)) {
- DEBUG(0,("api_lsa_open_policy2: unable to unmarshall LSA_Q_OPEN_POL2.\n"));
- return False;
- }
-
- r_u.status = _lsa_open_policy2(p, &q_u, &r_u);
-
- /* store the response in the SMB stream */
- if(!lsa_io_r_open_pol2("", &r_u, rdata, 0)) {
- DEBUG(0,("api_lsa_open_policy2: unable to marshall LSA_R_OPEN_POL2.\n"));
- return False;
- }
-
- return True;
+ return proxy_lsa_call(p, NDR_LSA_OPENPOLICY2);
}
/***************************************************************************