diff options
author | Volker Lendecke <vl@samba.org> | 2010-03-05 15:28:39 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2010-03-05 15:33:05 +0100 |
commit | c7835a4845bbc7e4d340a75229866b2d4946f6eb (patch) | |
tree | 216d8920c40a9f95c62b212fec09346edfaaf899 /source3 | |
parent | d4db966c06c079f9f837c4d181f4b2b75f4a9b36 (diff) | |
download | samba-c7835a4845bbc7e4d340a75229866b2d4946f6eb.tar.gz samba-c7835a4845bbc7e4d340a75229866b2d4946f6eb.tar.bz2 samba-c7835a4845bbc7e4d340a75229866b2d4946f6eb.zip |
s3: db->persistent==true was handled earlier, make this more obvious
Diffstat (limited to 'source3')
-rw-r--r-- | source3/lib/dbwrap_ctdb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/dbwrap_ctdb.c b/source3/lib/dbwrap_ctdb.c index ddc886864b..05ac777858 100644 --- a/source3/lib/dbwrap_ctdb.c +++ b/source3/lib/dbwrap_ctdb.c @@ -1050,7 +1050,7 @@ static struct db_record *db_ctdb_fetch_locked(struct db_context *db, return db_ctdb_fetch_locked_persistent(ctx, mem_ctx, key); } - return fetch_locked_internal(ctx, mem_ctx, key, db->persistent); + return fetch_locked_internal(ctx, mem_ctx, key, false); } /* |