summaryrefslogtreecommitdiff
path: root/source3/winbindd/winbindd_msrpc.c
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2011-09-06 18:33:35 +0200
committerVolker Lendecke <vlendec@samba.org>2011-09-06 20:03:56 +0200
commitfd65e5eb8cdd38917a574734c9079cd75e4e1be0 (patch)
treef757cdda74fb3c975627182908992b9652852c8d /source3/winbindd/winbindd_msrpc.c
parent436cda0cbd4682aad78edae02e663420b95c4cda (diff)
downloadsamba-fd65e5eb8cdd38917a574734c9079cd75e4e1be0.tar.gz
samba-fd65e5eb8cdd38917a574734c9079cd75e4e1be0.tar.bz2
samba-fd65e5eb8cdd38917a574734c9079cd75e4e1be0.zip
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
Diffstat (limited to 'source3/winbindd/winbindd_msrpc.c')
-rw-r--r--source3/winbindd/winbindd_msrpc.c21
1 files changed, 14 insertions, 7 deletions
diff --git a/source3/winbindd/winbindd_msrpc.c b/source3/winbindd/winbindd_msrpc.c
index 9ef0d87f5a..342a03b1c9 100644
--- a/source3/winbindd/winbindd_msrpc.c
+++ b/source3/winbindd/winbindd_msrpc.c
@@ -35,6 +35,13 @@
#undef DBGC_CLASS
#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
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,
NTSTATUS *result);
-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)
+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)
{
NTSTATUS status;
NTSTATUS result;