svn commit: samba r8704 - in branches/SAMBA_3_0/source/lib: .

jra at samba.org jra at samba.org
Fri Jul 22 05:00:28 GMT 2005


Author: jra
Date: 2005-07-22 05:00:27 +0000 (Fri, 22 Jul 2005)
New Revision: 8704

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

Log:
Patch from Timur Bakeyev <timur at com.bat.ru> to fix typo
calling wrong aio_fsync function. Bugid #2909.
Jeremy.

Modified:
   branches/SAMBA_3_0/source/lib/system.c


Changeset:
Modified: branches/SAMBA_3_0/source/lib/system.c
===================================================================
--- branches/SAMBA_3_0/source/lib/system.c	2005-07-22 04:32:59 UTC (rev 8703)
+++ branches/SAMBA_3_0/source/lib/system.c	2005-07-22 05:00:27 UTC (rev 8704)
@@ -1938,7 +1938,7 @@
 #if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_AIOCB64) && defined(HAVE_AIO_FSYNC64)
         return aio_fsync64(op, aiocb);
 #elif defined(HAVE_AIO_FSYNC)
-        return aio_fsync64(op, aiocb);
+        return aio_fsync(op, aiocb);
 #else
 	errno = ENOSYS;
 	return -1;



More information about the samba-cvs mailing list