diff options
-rw-r--r-- | source3/lib/sharesec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/lib/sharesec.c b/source3/lib/sharesec.c index a2aed7921c..3d9e608387 100644 --- a/source3/lib/sharesec.c +++ b/source3/lib/sharesec.c @@ -51,8 +51,8 @@ static bool share_info_db_init(void) return True; } - share_db = db_open(NULL, state_path("share_info.tdb"), 0, TDB_DEFAULT, - O_RDWR|O_CREAT, 0600); + share_db = db_open_trans(NULL, state_path("share_info.tdb"), 0, + TDB_DEFAULT, O_RDWR|O_CREAT, 0600); if (share_db == NULL) { DEBUG(0,("Failed to open share info database %s (%s)\n", state_path("share_info.tdb"), strerror(errno) )); |