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
committerStefan Metzmacher <metze@sernet.de>2007-10-22 08:46:09 +0200
commite5cedc7611f1dd4441cdde5ebb2857d8476eb450 (patch)
tree9d97e74400d21915c2bacd2d6cbb4bb0f95c3ccb /source3/winbindd/winbindd_async.c
parent6a8dfad25ca758c2f6c81b249ce2b7f2a5f90715 (diff)
downloadsamba-e5cedc7611f1dd4441cdde5ebb2857d8476eb450.tar.gz
samba-e5cedc7611f1dd4441cdde5ebb2857d8476eb450.tar.bz2
samba-e5cedc7611f1dd4441cdde5ebb2857d8476eb450.zip
r25567: make do_async() non static
metze (cherry picked from commit badc714d7f82f8d7c21ecfeab137efb57e970210) (This used to be commit d623b2fa710cfe7ef85b7e9dd84b274b081841ae)
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 ae549d0fcf..b937b9d195 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;