From: Peter C. <pc...@us...> - 2010-02-03 01:27:03
|
Update of /cvsroot/ipbench/ipbench2/src/tests/nfsstone In directory sfp-cvsdas-1.v30.ch3.sourceforge.com:/tmp/cvs-serv20202/src/tests/nfsstone Modified Files: nfsstones.c Log Message: Many minor mods: --- rename ipbench.py and ipbenchd.py to remove suffix --- Check return values on system() , nice() etc., to allow building with -Werror --- Fix installation varation between Ubuntu and Debian: site-packages vs dist-packages. Index: nfsstones.c =================================================================== RCS file: /cvsroot/ipbench/ipbench2/src/tests/nfsstone/nfsstones.c,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** nfsstones.c 5 May 2005 02:43:57 -0000 1.14 --- nfsstones.c 3 Feb 2010 01:26:51 -0000 1.15 *************** *** 213,217 **** } ! if ((lock_fd = open(lock, O_RDWR|O_CREAT)) < OK) { perror("lock_file"); return FAIL; --- 213,217 ---- } ! if ((lock_fd = open(lock, O_RDWR|O_CREAT, 0600)) < OK) { perror("lock_file"); return FAIL; |