1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-10-27 08:52:26 +03:00

Fix bugs discovered in 3.1.4. F_FULLFSYNC not F_FULLSYNC. And a bug in

"make doc".  Also typos in the documentation. (CVS 2379)

FossilOrigin-Name: 3c57a4571fc8463ce9de1cbe5be45538bf2f0de9
This commit is contained in:
drh
2005-03-11 17:52:34 +00:00
parent 05501af78b
commit f30cc9496a
6 changed files with 20 additions and 16 deletions

View File

@@ -730,7 +730,7 @@ static int full_fsync(int fd, int fullSync){
#ifdef F_FULLFSYNC
if( fullSync ){
rc = fcntl(fd, F_FULLSYNC, 0);
rc = fcntl(fd, F_FULLFSYNC, 0);
}else{
rc = 1;
}
@@ -739,7 +739,7 @@ static int full_fsync(int fd, int fullSync){
#else
rc = fsync(fd);
#endif /* defined(F_FULLSYNC) */
#endif /* defined(F_FULLFSYNC) */
#endif /* defined(SQLITE_NO_SYNC) */
return rc;
@@ -778,7 +778,7 @@ int sqlite3OsSync(OsFile *id){
**
** This is used to make sure the master journal file has truely been deleted
** before making changes to individual journals on a multi-database commit.
** The F_FULLSYNC option is not needed here.
** The F_FULLFSYNC option is not needed here.
*/
int sqlite3OsSyncDirectory(const char *zDirname){
int fd;