summaryrefslogtreecommitdiff
path: root/source3/rpc_server/srv_lsa.c
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2008-02-11 20:29:31 +0100
committerGünther Deschner <gd@samba.org>2008-02-11 20:49:43 +0100
commite917a8a94a985154e86b792924246cdfcc527e0a (patch)
treedbb99db397d5ecae70788d56ce6252b3851a6626 /source3/rpc_server/srv_lsa.c
parent1a27d29686e6a4e05f138488d3456ae4b86c4642 (diff)
downloadsamba-e917a8a94a985154e86b792924246cdfcc527e0a.tar.gz
samba-e917a8a94a985154e86b792924246cdfcc527e0a.tar.bz2
samba-e917a8a94a985154e86b792924246cdfcc527e0a.zip
Use pidl for _lsa_GetUserName().
Guenther (This used to be commit b24cf05dcad5696a7b948c93de9e995c2b53e80f)
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 9f3dd9031c..9865a70e72 100644
--- a/source3/rpc_server/srv_lsa.c
+++ b/source3/rpc_server/srv_lsa.c
@@ -234,29 +234,7 @@ static bool api_lsa_enum_accounts(pipes_struct *p)
static bool api_lsa_unk_get_connuser(pipes_struct *p)
{
- LSA_Q_UNK_GET_CONNUSER q_u;
- LSA_R_UNK_GET_CONNUSER 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_unk_get_connuser("", &q_u, data, 0)) {
- DEBUG(0,("api_lsa_unk_get_connuser: failed to unmarshall LSA_Q_UNK_GET_CONNUSER.\n"));
- return False;
- }
-
- r_u.status = _lsa_unk_get_connuser(p, &q_u, &r_u);
-
- /* store the response in the SMB stream */
- if(!lsa_io_r_unk_get_connuser("", &r_u, rdata, 0)) {
- DEBUG(0,("api_lsa_unk_get_connuser: Failed to marshall LSA_R_UNK_GET_CONNUSER.\n"));
- return False;
- }
-
- return True;
+ return proxy_lsa_call(p, NDR_LSA_GETUSERNAME);
}
/***************************************************************************