summaryrefslogtreecommitdiff
path: root/source3/rpc_parse
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2008-01-14 17:16:06 +0100
committerGünther Deschner <gd@samba.org>2008-01-14 17:16:06 +0100
commit862e1685b8b4f0ec76b5f715d39781e0fd8fa4f0 (patch)
treef737dad2415a3994e3bab66855442dffb89bced4 /source3/rpc_parse
parent003694b4a7b9844c2b210c3b40efb57dd8d96c0e (diff)
downloadsamba-862e1685b8b4f0ec76b5f715d39781e0fd8fa4f0.tar.gz
samba-862e1685b8b4f0ec76b5f715d39781e0fd8fa4f0.tar.bz2
samba-862e1685b8b4f0ec76b5f715d39781e0fd8fa4f0.zip
Remove old lsa set info policy call.
Guenther (This used to be commit b37b2b77edec72fc3f53b3461aa1c210e4366c1b)
Diffstat (limited to 'source3/rpc_parse')
-rw-r--r--source3/rpc_parse/parse_lsa.c58
1 files changed, 0 insertions, 58 deletions
diff --git a/source3/rpc_parse/parse_lsa.c b/source3/rpc_parse/parse_lsa.c
index e4d5d15112..98c4283347 100644
--- a/source3/rpc_parse/parse_lsa.c
+++ b/source3/rpc_parse/parse_lsa.c
@@ -909,21 +909,6 @@ bool lsa_io_dom_query_12(const char *desc, DOM_QUERY_12 *info, prs_struct *ps, i
}
-/*******************************************************************
- Inits an LSA_Q_QUERY_INFO structure.
-********************************************************************/
-
-void init_q_set(LSA_Q_SET_INFO *in, POLICY_HND *hnd, uint16 info_class, LSA_INFO_CTR ctr)
-{
- DEBUG(5,("init_q_set\n"));
-
- in->info_class = info_class;
-
- in->pol = *hnd;
-
- in->ctr = ctr;
- in->ctr.info_class = info_class;
-}
/*******************************************************************
reads or writes a structure.
@@ -1065,49 +1050,6 @@ bool lsa_io_r_query(const char *desc, LSA_R_QUERY_INFO *out, prs_struct *ps, int
}
/*******************************************************************
- Reads or writes an LSA_Q_SET_INFO structure.
-********************************************************************/
-
-bool lsa_io_q_set(const char *desc, LSA_Q_SET_INFO *in, prs_struct *ps,
- int depth)
-{
- prs_debug(ps, depth, desc, "lsa_io_q_set");
- depth++;
-
- if(!prs_align(ps))
- return False;
-
- if(!smb_io_pol_hnd("", &in->pol, ps, depth))
- return False;
-
- if(!prs_uint16("info_class", ps, depth, &in->info_class))
- return False;
-
- if(!lsa_io_query_info_ctr("", ps, depth, &in->ctr))
- return False;
-
- return True;
-}
-
-/*******************************************************************
- Reads or writes an LSA_R_SET_INFO structure.
-********************************************************************/
-
-bool lsa_io_r_set(const char *desc, LSA_R_SET_INFO *out, prs_struct *ps, int depth)
-{
- prs_debug(ps, depth, desc, "lsa_io_r_set");
- depth++;
-
- if(!prs_align(ps))
- return False;
-
- if(!prs_ntstatus("status", ps, depth, &out->status))
- return False;
-
- return True;
-}
-
-/*******************************************************************
Inits a LSA_SID_ENUM structure.
********************************************************************/