summaryrefslogtreecommitdiff
path: root/lib/tdb/docs
diff options
context:
space:
mode:
authorKirill Smelkov <kirr@mns.spb.ru>2009-10-21 21:18:58 +0400
committerRusty Russell <rusty@rustcorp.com.au>2009-10-29 10:14:34 +1030
commit83de5c826313aa09c76131ae70550bd81b3521c5 (patch)
treedbd38385ca36672830aa49cc66879cf1d50c01a5 /lib/tdb/docs
parent71a21393dd1bb61bded82b1581ac6d5bd3b0153c (diff)
downloadsamba-83de5c826313aa09c76131ae70550bd81b3521c5.tar.gz
samba-83de5c826313aa09c76131ae70550bd81b3521c5.tar.bz2
samba-83de5c826313aa09c76131ae70550bd81b3521c5.zip
tdb: update README a bit
While studying tdb, I've noticed a couple of mismatches between readme and actual code: - tdb_open_ex changed it's log_fn argument to log_ctx - there is now no tdb_update(), which it seems was transformed into non-exported tdb_update_hash() There were other mismatches, but I don't remember them now, sorry. Signed-off-by: Kirill Smelkov <kirr@mns.spb.ru> Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Diffstat (limited to 'lib/tdb/docs')
-rw-r--r--lib/tdb/docs/README9
1 files changed, 1 insertions, 8 deletions
diff --git a/lib/tdb/docs/README b/lib/tdb/docs/README
index 4eb809fdf4..7bf485408c 100644
--- a/lib/tdb/docs/README
+++ b/lib/tdb/docs/README
@@ -73,7 +73,7 @@ TDB_CONTEXT *tdb_open(char *name, int hash_size, int tdb_flags,
----------------------------------------------------------------------
TDB_CONTEXT *tdb_open_ex(char *name, int hash_size, int tdb_flags,
int open_flags, mode_t mode,
- tdb_log_func log_fn,
+ const struct tdb_logging_context *log_ctx,
tdb_hash_func hash_fn)
This is like tdb_open(), but allows you to pass an initial logging and
@@ -93,13 +93,6 @@ int tdb_close(TDB_CONTEXT *tdb);
close a database
----------------------------------------------------------------------
-int tdb_update(TDB_CONTEXT *tdb, TDB_DATA key, TDB_DATA dbuf);
-
- update an entry in place - this only works if the new data size
- is <= the old data size and the key exists.
- on failure return -1
-
-----------------------------------------------------------------------
TDB_DATA tdb_fetch(TDB_CONTEXT *tdb, TDB_DATA key);
fetch an entry in the database given a key