svn commit: samba r7409 - in trunk/source/smbd: .

jra at samba.org jra at samba.org
Wed Jun 8 20:00:31 GMT 2005


Author: jra
Date: 2005-06-08 20:00:31 +0000 (Wed, 08 Jun 2005)
New Revision: 7409

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

Log:
Don't forget to set the mid.
Jeremy.

Modified:
   trunk/source/smbd/aio.c


Changeset:
Modified: trunk/source/smbd/aio.c
===================================================================
--- trunk/source/smbd/aio.c	2005-06-08 19:49:49 UTC (rev 7408)
+++ trunk/source/smbd/aio.c	2005-06-08 20:00:31 UTC (rev 7409)
@@ -21,7 +21,7 @@
 
 #include "includes.h"
 
-/*#define HAVE_POSIX_ASYNC_IO 1 */
+/* #define HAVE_POSIX_ASYNC_IO 1 */
 #if HAVE_POSIX_ASYNC_IO
 
 /* The signal we'll use to signify aio done. */
@@ -72,6 +72,7 @@
 	DLIST_ADD(aio_list_head, aio_ex);
 	aio_ex->fsp = fsp;
 	aio_ex->read_req = True;
+	aio_ex->mid = mid;
 	return aio_ex;
 }
 
@@ -108,6 +109,7 @@
 	DLIST_ADD(aio_list_head, aio_ex);
 	aio_ex->fsp = fsp;
 	aio_ex->read_req = False;
+	aio_ex->mid = mid;
 	return aio_ex;
 }
 



More information about the samba-cvs mailing list