summaryrefslogtreecommitdiff
path: root/source/winbindd/winbindd_async.c
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2007-10-08 10:54:33 +0000
committerStefan Metzmacher <metze@sernet.de>2007-10-22 08:46:09 +0200
commitd623b2fa710cfe7ef85b7e9dd84b274b081841ae (patch)
treed82d005599d5cd1e2eb334c7553620f0c13dec4d /source/winbindd/winbindd_async.c
parentdfef16ac4318b460a5bd29475eb395c1905a5cd8 (diff)
downloadsamba-d623b2fa710cfe7ef85b7e9dd84b274b081841ae.tar.gz
r25567: make do_async() non static
metze (cherry picked from commit badc714d7f82f8d7c21ecfeab137efb57e970210)
Diffstat (limited to 'source/winbindd/winbindd_async.c')
-rw-r--r--source/winbindd/winbindd_async.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/source/winbindd/winbindd_async.c b/source/winbindd/winbindd_async.c
index ae549d0fcff..b937b9d195b 100644
--- a/source/winbindd/winbindd_async.c
+++ b/source/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;