svn commit: samba r25567 - in branches/SAMBA_3_2/source/winbindd: .

metze at samba.org metze at samba.org
Mon Oct 8 10:54:34 GMT 2007


Author: metze
Date: 2007-10-08 10:54:33 +0000 (Mon, 08 Oct 2007)
New Revision: 25567

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=25567

Log:
make do_async() non static

metze
Modified:
   branches/SAMBA_3_2/source/winbindd/winbindd_async.c


Changeset:
Modified: branches/SAMBA_3_2/source/winbindd/winbindd_async.c
===================================================================
--- branches/SAMBA_3_2/source/winbindd/winbindd_async.c	2007-10-08 10:05:13 UTC (rev 25566)
+++ branches/SAMBA_3_2/source/winbindd/winbindd_async.c	2007-10-08 10:54:33 UTC (rev 25567)
@@ -57,12 +57,12 @@
 		    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;
 



More information about the samba-cvs mailing list