diff options
author | drh <drh@noemail.net> | 2012-01-05 11:43:10 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2012-01-05 11:43:10 +0000 |
commit | bce51350d68e183ff7dd15f7f2f36020a4adec5c (patch) | |
tree | 8b04378df4aaf87f6b81c3f964cc6df95cd18c91 /src/os_unix.c | |
parent | e4c88c0c384f681374a51983f90398e4d5cb1825 (diff) | |
download | sqlite-bce51350d68e183ff7dd15f7f2f36020a4adec5c.tar.gz sqlite-bce51350d68e183ff7dd15f7f2f36020a4adec5c.zip |
Remove the SQLITE_FCNTL_SYNC_OMITTED cases from the unix and windows VFSes
as they are no longer needed because of check-in [fd3822f1f2].
FossilOrigin-Name: 7cf568a101cda20ab6005bd250154b7f6960193a
Diffstat (limited to 'src/os_unix.c')
-rw-r--r-- | src/os_unix.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/os_unix.c b/src/os_unix.c index e0a39882e..4f263bcdd 100644 --- a/src/os_unix.c +++ b/src/os_unix.c @@ -3570,9 +3570,6 @@ static int unixFileControl(sqlite3_file *id, int op, void *pArg){ return proxyFileControl(id,op,pArg); } #endif /* SQLITE_ENABLE_LOCKING_STYLE && defined(__APPLE__) */ - case SQLITE_FCNTL_SYNC_OMITTED: { - return SQLITE_OK; /* A no-op */ - } } return SQLITE_NOTFOUND; } |