diff options
author | Michael Adam <obnox@samba.org> | 2014-01-27 14:49:12 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2014-02-07 16:06:06 +0100 |
commit | cf0cb0add9ed47b8974272237fee0e1a4ba7bf68 (patch) | |
tree | e655a5a44b8d134767b6a58a281aa040317a664c /source3/rpc_client | |
parent | 229dcfd3501e4743d5d9aea5c9f7a97d7612a499 (diff) | |
download | samba-cf0cb0add9ed47b8974272237fee0e1a4ba7bf68.tar.gz |
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/rpc_client')
-rw-r--r-- | source3/rpc_client/cli_netlogon.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/rpc_client/cli_netlogon.c b/source3/rpc_client/cli_netlogon.c index b7b490f818b..9e3c1bd30e6 100644 --- a/source3/rpc_client/cli_netlogon.c +++ b/source3/rpc_client/cli_netlogon.c @@ -69,7 +69,8 @@ NTSTATUS rpccli_pre_open_netlogon_creds(void) global_db = db_open(talloc_autofree_context(), fname, 0, TDB_CLEAR_IF_FIRST|TDB_INCOMPATIBLE_HASH, - O_RDWR|O_CREAT, 0600, DBWRAP_LOCK_ORDER_2); + O_RDWR|O_CREAT, 0600, DBWRAP_LOCK_ORDER_2, + DBWRAP_FLAG_NONE); if (global_db == NULL) { TALLOC_FREE(frame); return NT_STATUS_NO_MEMORY; |