summaryrefslogtreecommitdiff
path: root/source3/winbindd/winbindd_async.c
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2007-10-08 10:54:33 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:31:14 -0500
commitadf5ac6f60d3e611386bbce3ef7556b8d8efd996 (patch)
treeb90753b3d027b14e9759eba3f108e2ed18bfd55c /source3/winbindd/winbindd_async.c
parentf7055aef172663f1b511c72ce9f3ec62c8ed0c0d (diff)
downloadsamba-adf5ac6f60d3e611386bbce3ef7556b8d8efd996.tar.gz
r25567: make do_async() non static
metze (This used to be commit badc714d7f82f8d7c21ecfeab137efb57e970210)
Diffstat (limited to 'source3/winbindd/winbindd_async.c')
-rw-r--r--source3/winbindd/winbindd_async.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/source3/winbindd/winbindd_async.c b/source3/winbindd/winbindd_async.c
index 5d31ff0a41a..f616984b819 100644
--- a/source3/winbindd/winbindd_async.c
+++ b/source3/winbindd/winbindd_async.c
@@ -57,12 +57,12 @@ static void do_async_recv(void *private_data, BOOL success)
state->c, state->private_data);
}
-static void do_async(TALLOC_CTX *mem_ctx, struct winbindd_child *child,
- const struct winbindd_request *request,
- void (*cont)(TALLOC_CTX *mem_ctx, BOOL success,
- struct winbindd_response *response,
- void *c, void *private_data),
- void *c, void *private_data)
+void do_async(TALLOC_CTX *mem_ctx, struct winbindd_child *child,
+ const struct winbindd_request *request,
+ void (*cont)(TALLOC_CTX *mem_ctx, BOOL success,
+ struct winbindd_response *response,
+ void *c, void *private_data),
+ void *c, void *private_data)
{
struct do_async_state *state;