summaryrefslogtreecommitdiff
path: root/lib/libc
diff options
context:
space:
mode:
authorXin LI <delphij@FreeBSD.org>2009-03-28 07:26:00 +0000
committerXin LI <delphij@FreeBSD.org>2009-03-28 07:26:00 +0000
commit73590c342a2d1a23322e7c64295fd91c6a6294b9 (patch)
treedd0c2c5dd187da8071e7eda1888154e4d00fd897 /lib/libc
parent6c90d46ee549e75175d6224874747029b600b5a8 (diff)
Notes
Diffstat (limited to 'lib/libc')
-rw-r--r--lib/libc/db/db/db.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/db/db/db.c b/lib/libc/db/db/db.c
index 7f18a8d16111..3cfd0a9081a2 100644
--- a/lib/libc/db/db/db.c
+++ b/lib/libc/db/db/db.c
@@ -50,8 +50,8 @@ dbopen(const char *fname, int flags, int mode, DBTYPE type, const void *openinfo
#define DB_FLAGS (DB_LOCK | DB_SHMEM | DB_TXN)
#define USE_OPEN_FLAGS \
- (O_CREAT | O_EXCL | O_EXLOCK | O_NONBLOCK | O_RDONLY | \
- O_RDWR | O_SHLOCK | O_TRUNC)
+ (O_CREAT | O_EXCL | O_EXLOCK | O_NOFOLLOW | O_NONBLOCK | \
+ O_RDONLY | O_RDWR | O_SHLOCK | O_SYNC | O_TRUNC)
if ((flags & ~(USE_OPEN_FLAGS | DB_FLAGS)) == 0)
switch (type) {