summaryrefslogtreecommitdiff
path: root/lib/tdb/common/tdb_private.h
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2010-04-20 13:53:35 +1000
committerAndrew Tridgell <tridge@samba.org>2010-04-20 15:50:27 +1000
commit773a8afbba27a5e2e48577100f3ca9873b506615 (patch)
tree214e581d8fb0430e2be12d75e8e6f8f92257a382 /lib/tdb/common/tdb_private.h
parentcdaac0afc12d155417764baa135bf29067103da4 (diff)
downloadsamba-773a8afbba27a5e2e48577100f3ca9873b506615.tar.gz
samba-773a8afbba27a5e2e48577100f3ca9873b506615.tar.bz2
samba-773a8afbba27a5e2e48577100f3ca9873b506615.zip
tdb: update tdb ABI to use hide_symbols=True
We now use -fvisibilty=hidden to hide symbols from outside the tdb shared library. This also moved tdb_transaction_recover() into the tdb_private.h header, as it should never have been a public API. For that reason we are changing the version number. We're only doing a minor version increment as it is extremely unlikely that anyone was actually using tdb_transaction_recover() as its locking requirements were rather unusual. Pair-Programmed-With: Rusty Russell <rusty@samba.org>
Diffstat (limited to 'lib/tdb/common/tdb_private.h')
-rw-r--r--lib/tdb/common/tdb_private.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tdb/common/tdb_private.h b/lib/tdb/common/tdb_private.h
index b23b76a416..e2167132b4 100644
--- a/lib/tdb/common/tdb_private.h
+++ b/lib/tdb/common/tdb_private.h
@@ -267,4 +267,4 @@ int tdb_expand(struct tdb_context *tdb, tdb_off_t size);
int tdb_rec_free_read(struct tdb_context *tdb, tdb_off_t off,
struct tdb_record *rec);
-
+int tdb_transaction_recover(struct tdb_context *tdb);