diff options
author | drh <drh@noemail.net> | 2007-08-27 21:10:36 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2007-08-27 21:10:36 +0000 |
commit | 50d3f9064bc7bfd95d6a19b1a9797ee9d12f7769 (patch) | |
tree | 2c39c17d5464150fe7c0fe874fcc880d76e7b26c /src/os_unix.c | |
parent | 9f61c2f12986211b88adb239846ee8134be2aff1 (diff) | |
download | sqlite-50d3f9064bc7bfd95d6a19b1a9797ee9d12f7769.tar.gz sqlite-50d3f9064bc7bfd95d6a19b1a9797ee9d12f7769.zip |
Added the 34to35.html document describing the changes between 3.4.2 and
3.5.0. Minor interface cleanups. (CVS 4302)
FossilOrigin-Name: 0791f917bb18d7305b805b9cbcb308bdd7b3a1f5
Diffstat (limited to 'src/os_unix.c')
-rw-r--r-- | src/os_unix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os_unix.c b/src/os_unix.c index e9150f1df..1b23fef1e 100644 --- a/src/os_unix.c +++ b/src/os_unix.c @@ -2463,7 +2463,7 @@ static int unixAccess(sqlite3_vfs *pVfs, const char *zPath, int flags){ case SQLITE_ACCESS_READWRITE: amode = W_OK|R_OK; break; - case SQLITE_ACCESS_READONLY: + case SQLITE_ACCESS_READ: amode = R_OK; break; |