diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/tdb/common/open.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/tdb/common/open.c b/lib/tdb/common/open.c index 401fa74ae0a..d195c1c4840 100644 --- a/lib/tdb/common/open.c +++ b/lib/tdb/common/open.c @@ -228,6 +228,10 @@ struct tdb_context *tdb_open_ex(const char *name, int hash_size, int tdb_flags, goto fail; } + if (getenv("TDB_NO_FSYNC")) { + tdb->flags |= TDB_NOSYNC; + } + /* * TDB_ALLOW_NESTING is the default behavior. * Note: this may change in future versions! |