aboutsummaryrefslogtreecommitdiff
path: root/src/os_unix.c
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2020-05-01 15:04:13 +0000
committerdrh <drh@noemail.net>2020-05-01 15:04:13 +0000
commite754830eaebe889df879ab88913938779e7d6a0c (patch)
treec88a42dd672a323124858a0d20e51955f635b96d /src/os_unix.c
parentad996da0f66766e45734fa2d017f4ee985341bc8 (diff)
parent50511942700dcfca877b61aa1be1c4e4382daae1 (diff)
downloadsqlite-e754830eaebe889df879ab88913938779e7d6a0c.tar.gz
sqlite-e754830eaebe889df879ab88913938779e7d6a0c.zip
Merge recent trunk enhancements.
FossilOrigin-Name: 2100b2c8f339e9778723fa0c91e479bab8675cf6fbea1664b6af49f40db6d27b
Diffstat (limited to 'src/os_unix.c')
-rw-r--r--src/os_unix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os_unix.c b/src/os_unix.c
index a4dd2f906..56e53929e 100644
--- a/src/os_unix.c
+++ b/src/os_unix.c
@@ -3685,7 +3685,7 @@ static int openDirectory(const char *zFilename, int *pFd){
if( zDirname[0]!='/' ) zDirname[0] = '.';
zDirname[1] = 0;
}
- fd = robust_open(zDirname, O_RDONLY|O_BINARY|O_NOFOLLOW, 0);
+ fd = robust_open(zDirname, O_RDONLY|O_BINARY, 0);
if( fd>=0 ){
OSTRACE(("OPENDIR %-3d %s\n", fd, zDirname));
}