1
0
mirror of https://github.com/samba-team/samba.git synced 2025-12-07 20:23:50 +03:00

split some security related functions in their own files.

(no need to include all of smbd files to use some basic sec functions)

also minor compile fixes
couldn't compile to test these due to some kerberos problems wirh 3.0,
but on HEAD they're working well, so I suppose it's ok to commit
This commit is contained in:
Simo Sorce
-
parent 096b997588
commit c78f2d0bd1
15 changed files with 103 additions and 942 deletions

View File

@@ -1035,9 +1035,9 @@ NTSTATUS cli_lsa_enum_privsaccount(struct cli_state *cli, TALLOC_CTX *mem_ctx,
}
for (i=0; i<r.count; i++) {
(*set)[i].luid.low = r.set.set[i].luid.low;
(*set)[i].luid.high = r.set.set[i].luid.high;
(*set)[i].attr = r.set.set[i].attr;
(*set)[i].luid.low = r.set->set[i].luid.low;
(*set)[i].luid.high = r.set->set[i].luid.high;
(*set)[i].attr = r.set->set[i].attr;
}
*count=r.count;