1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

r25567: make do_async() non static

metze
(cherry picked from commit badc714d7f)
(This used to be commit d623b2fa71)
This commit is contained in:
Stefan Metzmacher 2007-10-08 10:54:33 +00:00 committed by Stefan Metzmacher
parent 6a8dfad25c
commit e5cedc7611

View File

@ -57,12 +57,12 @@ static void do_async_recv(void *private_data, bool success)
state->c, state->private_data); state->c, state->private_data);
} }
static void do_async(TALLOC_CTX *mem_ctx, struct winbindd_child *child, void do_async(TALLOC_CTX *mem_ctx, struct winbindd_child *child,
const struct winbindd_request *request, const struct winbindd_request *request,
void (*cont)(TALLOC_CTX *mem_ctx, bool success, void (*cont)(TALLOC_CTX *mem_ctx, bool success,
struct winbindd_response *response, struct winbindd_response *response,
void *c, void *private_data), void *c, void *private_data),
void *c, void *private_data) void *c, void *private_data)
{ {
struct do_async_state *state; struct do_async_state *state;