summaryrefslogtreecommitdiff
path: root/lib/tdb2/private.h
diff options
context:
space:
mode:
authorRusty Russell <rusty@rustcorp.com.au>2011-09-14 07:14:13 +0930
committerRusty Russell <rusty@rustcorp.com.au>2011-09-14 07:14:13 +0930
commit2cf3f7c07499f565101e1bcb835c73fc297ea72e (patch)
treedd1f4507984e47302b29cd6312ef12cf0c9afe1f /lib/tdb2/private.h
parent376511ed4defeeeabcfaa83acd230afd4a46b6fd (diff)
downloadsamba-2cf3f7c07499f565101e1bcb835c73fc297ea72e.tar.gz
samba-2cf3f7c07499f565101e1bcb835c73fc297ea72e.tar.bz2
samba-2cf3f7c07499f565101e1bcb835c73fc297ea72e.zip
tdb2: save open_flags instead of mmap_flags.
It's more consistent with what tdb1 does, and slightly more encapsulated. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> (Imported from CCAN commit 6b7c3c840eafbec211b9f58751c5ff754302a68e)
Diffstat (limited to 'lib/tdb2/private.h')
-rw-r--r--lib/tdb2/private.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/tdb2/private.h b/lib/tdb2/private.h
index a43fa4ac56..f8985743dd 100644
--- a/lib/tdb2/private.h
+++ b/lib/tdb2/private.h
@@ -346,8 +346,8 @@ struct tdb_context {
/* Operating read-only? (Opened O_RDONLY, or in traverse_read) */
bool read_only;
- /* mmap read only? */
- int mmap_flags;
+ /* Open flags passed to tdb_open. */
+ int open_flags;
/* the flags passed to tdb_open, for tdb_reopen. */
uint32_t flags;