diff options
author | drh <drh@noemail.net> | 2019-03-15 19:08:23 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2019-03-15 19:08:23 +0000 |
commit | aadf8327be6e54d52a8887897bd65983c6dc3a4e (patch) | |
tree | 5fe83555049239dafd0d16abc8531d83be0abdec /src/os_unix.c | |
parent | 25f5383cb8d5ec09b93ae235fd42fcd86e20af54 (diff) | |
download | sqlite-aadf8327be6e54d52a8887897bd65983c6dc3a4e.tar.gz sqlite-aadf8327be6e54d52a8887897bd65983c6dc3a4e.zip |
Back out the change to support Fuchsia, since it turns out fuchsia does not
like dot-file locks.
FossilOrigin-Name: 1d801a3b2c48dc8a918d6da047bc877acf033d5f5c4e1d4b412ba7678ed6f8b3
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 4e434334b..f20763e5b 100644 --- a/src/os_unix.c +++ b/src/os_unix.c @@ -7822,9 +7822,6 @@ int sqlite3_os_init(void){ UNIXVFS("unix", autolockIoFinder ), #elif OS_VXWORKS UNIXVFS("unix", vxworksIoFinder ), -#elif __Fuchsia__ - /* We are told that Fuchsia only supports dot-file locking */ - UNIXVFS("unix", dotlockIoFinder ), #else UNIXVFS("unix", posixIoFinder ), #endif |