svn commit: samba r3547 - in branches/SAMBA_4_0/source/build/tests: .

tridge at samba.org tridge at samba.org
Fri Nov 5 10:30:54 GMT 2004


Author: tridge
Date: 2004-11-05 10:30:54 +0000 (Fri, 05 Nov 2004)
New Revision: 3547

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

Log:
fixed waitpid in fcntl_lock.c (thanks to jbm for pointing this out)


Modified:
   branches/SAMBA_4_0/source/build/tests/fcntl_lock.c


Changeset:
Modified: branches/SAMBA_4_0/source/build/tests/fcntl_lock.c
===================================================================
--- branches/SAMBA_4_0/source/build/tests/fcntl_lock.c	2004-11-05 09:19:42 UTC (rev 3546)
+++ branches/SAMBA_4_0/source/build/tests/fcntl_lock.c	2004-11-05 10:30:54 UTC (rev 3547)
@@ -89,7 +89,7 @@
 	/* set a 4 byte write lock */
 	fcntl(fd,F_SETLK,&lock);
 
-	sys_waitpid(pid, &status, 0);
+	waitpid(pid, &status, 0);
 
 	unlink(DATA);
 



More information about the samba-cvs mailing list