summaryrefslogtreecommitdiff
path: root/source3/rpc_parse/parse_lsa.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2003-02-11 21:55:48 +0000
committerAndrew Tridgell <tridge@samba.org>2003-02-11 21:55:48 +0000
commit8ddccd47c733abe6118c6f6f8d011bfc508396c1 (patch)
tree3a2fbee7400339f5cb84bcb0d6517bb2f90ae236 /source3/rpc_parse/parse_lsa.c
parent2d220ef00d1f2bae676a4201fb483a5ee3d0ae15 (diff)
downloadsamba-8ddccd47c733abe6118c6f6f8d011bfc508396c1.tar.gz
samba-8ddccd47c733abe6118c6f6f8d011bfc508396c1.tar.bz2
samba-8ddccd47c733abe6118c6f6f8d011bfc508396c1.zip
added server stubs for lsa_enum_acct_with_right
(This used to be commit aa2abacaf48924797b6803786c14c9f303185e4a)
Diffstat (limited to 'source3/rpc_parse/parse_lsa.c')
-rw-r--r--source3/rpc_parse/parse_lsa.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/source3/rpc_parse/parse_lsa.c b/source3/rpc_parse/parse_lsa.c
index 6832b0df66..53a0fc958d 100644
--- a/source3/rpc_parse/parse_lsa.c
+++ b/source3/rpc_parse/parse_lsa.c
@@ -2510,3 +2510,16 @@ BOOL lsa_io_r_enum_acct_with_right(const char *desc, LSA_R_ENUM_ACCT_WITH_RIGHT
return True;
}
+
+/*******************************************************************
+ Inits an LSA_R_ENUM_ACCT_WITH_RIGHT structure.
+********************************************************************/
+void init_r_enum_acct_with_right(LSA_R_ENUM_ACCT_WITH_RIGHT *r_c,
+ uint32 count,
+ DOM_SID *sids)
+{
+ DEBUG(5, ("init_r_enum_acct_with_right\n"));
+
+ r_c->count = count;
+ init_sid_array(&r_c->sids, count, sids);
+}