From: Derrick Brashear Date: Mon, 10 Sep 2007 22:54:25 +0000 (+0000) Subject: namei-fsync-less-20070910 X-Git-Tag: BP-openafs-windows-kdfs-ifs~499 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=049c95d74cab7ba99b99f9634a32f38058c86fb1;p=packages%2Fo%2Fopenafs.git namei-fsync-less-20070910 remove sync() call from Windows build --- diff --git a/src/vol/ihandle.c b/src/vol/ihandle.c index 2713bba8a..c502d339f 100644 --- a/src/vol/ihandle.c +++ b/src/vol/ihandle.c @@ -913,8 +913,10 @@ ih_sync_thread() { IOMGR_Sleep(60); #endif /* AFS_PTHREAD_ENV */ - sync(); - ih_sync_all(); +#ifndef AFS_NT40_ENV + sync(); +#endif + ih_sync_all(); } }