summaryrefslogtreecommitdiffstats
path: root/source3/utils/net_idmap_check.c
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2014-01-27 14:49:12 +0100
committerStefan Metzmacher <metze@samba.org>2014-02-07 16:06:06 +0100
commitcf0cb0add9ed47b8974272237fee0e1a4ba7bf68 (patch)
treee655a5a44b8d134767b6a58a281aa040317a664c /source3/utils/net_idmap_check.c
parent229dcfd3501e4743d5d9aea5c9f7a97d7612a499 (diff)
downloadsamba-cf0cb0add9ed47b8974272237fee0e1a4ba7bf68.tar.gz
samba-cf0cb0add9ed47b8974272237fee0e1a4ba7bf68.tar.xz
samba-cf0cb0add9ed47b8974272237fee0e1a4ba7bf68.zip
dbwrap: add a dbwrap_flags argument to db_open()
This is in preparation to support handing flags to backends, in particular activating read only record support for ctdb databases. For a start, this does nothing but adding the parameter, and all databases use DBWRAP_FLAG_NONE. Signed-off-by: Michael Adam <obnox@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org>
Diffstat (limited to 'source3/utils/net_idmap_check.c')
-rw-r--r--source3/utils/net_idmap_check.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/utils/net_idmap_check.c b/source3/utils/net_idmap_check.c
index e75c8906de1..4b828719ea4 100644
--- a/source3/utils/net_idmap_check.c
+++ b/source3/utils/net_idmap_check.c
@@ -790,7 +790,7 @@ static bool check_open_db(struct check_ctx* ctx, const char* name, int oflags)
}
ctx->db = db_open(ctx, name, 0, TDB_DEFAULT, oflags, 0,
- DBWRAP_LOCK_ORDER_1);
+ DBWRAP_LOCK_ORDER_1, DBWRAP_FLAG_NONE);
if (ctx->db == NULL) {
d_fprintf(stderr,
_("Could not open idmap db (%s) for writing: %s\n"),