1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-08 05:57:51 +03:00

s3: Make winbindd_lookup_names static

Autobuild-User: Volker Lendecke <vlendec@samba.org>
Autobuild-Date: Tue Sep  6 20:03:56 CEST 2011 on sn-devel-104
This commit is contained in:
Volker Lendecke 2011-09-06 18:33:35 +02:00 committed by Volker Lendecke
parent 436cda0cbd
commit fd65e5eb8c
2 changed files with 14 additions and 14 deletions

View File

@ -35,6 +35,13 @@
#undef DBGC_CLASS #undef DBGC_CLASS
#define DBGC_CLASS DBGC_WINBIND #define DBGC_CLASS DBGC_WINBIND
static NTSTATUS winbindd_lookup_names(TALLOC_CTX *mem_ctx,
struct winbindd_domain *domain,
uint32_t num_names,
const char **names,
const char ***domains,
struct dom_sid **sids,
enum lsa_SidType **types);
/* Query display info for a domain. This returns enough information plus a /* Query display info for a domain. This returns enough information plus a
bit extra to give an overview of domain users for the User Manager bit extra to give an overview of domain users for the User Manager
@ -1156,13 +1163,13 @@ typedef NTSTATUS (*lookup_names_fn_t)(struct dcerpc_binding_handle *h,
enum lsa_SidType **types, enum lsa_SidType **types,
NTSTATUS *result); NTSTATUS *result);
NTSTATUS winbindd_lookup_names(TALLOC_CTX *mem_ctx, static NTSTATUS winbindd_lookup_names(TALLOC_CTX *mem_ctx,
struct winbindd_domain *domain, struct winbindd_domain *domain,
uint32_t num_names, uint32_t num_names,
const char **names, const char **names,
const char ***domains, const char ***domains,
struct dom_sid **sids, struct dom_sid **sids,
enum lsa_SidType **types) enum lsa_SidType **types)
{ {
NTSTATUS status; NTSTATUS status;
NTSTATUS result; NTSTATUS result;

View File

@ -47,13 +47,6 @@ NTSTATUS winbindd_lookup_sids(TALLOC_CTX *mem_ctx,
char ***domains, char ***domains,
char ***names, char ***names,
enum lsa_SidType **types); enum lsa_SidType **types);
NTSTATUS winbindd_lookup_names(TALLOC_CTX *mem_ctx,
struct winbindd_domain *domain,
uint32_t num_names,
const char **names,
const char ***domains,
struct dom_sid **sids,
enum lsa_SidType **types);
NTSTATUS rpc_lookup_sids(TALLOC_CTX *mem_ctx, NTSTATUS rpc_lookup_sids(TALLOC_CTX *mem_ctx,
struct winbindd_domain *domain, struct winbindd_domain *domain,
struct lsa_SidArray *sids, struct lsa_SidArray *sids,