r25567: make do_async() non static
authorStefan Metzmacher <metze@samba.org>
Mon, 8 Oct 2007 10:54:33 +0000 (10:54 +0000)
committerStefan Metzmacher <metze@sernet.de>
Mon, 22 Oct 2007 06:46:09 +0000 (08:46 +0200)
metze
(cherry picked from commit badc714d7f82f8d7c21ecfeab137efb57e970210)

source/winbindd/winbindd_async.c

index ae549d0fcff3c3309f64c0c4bca2e6a7d619f3a3..b937b9d195bfd244efe1f78f11834c530627ab0b 100644 (file)
@@ -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;