From 773a8afbba27a5e2e48577100f3ca9873b506615 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Tue, 20 Apr 2010 13:53:35 +1000 Subject: 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 --- lib/tdb/tdb.exports | 1 - 1 file changed, 1 deletion(-) (limited to 'lib/tdb/tdb.exports') diff --git a/lib/tdb/tdb.exports b/lib/tdb/tdb.exports index df97eb58fd..73b8fd634c 100644 --- a/lib/tdb/tdb.exports +++ b/lib/tdb/tdb.exports @@ -51,7 +51,6 @@ tdb_transaction_cancel; tdb_transaction_commit; tdb_transaction_prepare_commit; - tdb_transaction_recover; tdb_transaction_start; tdb_transaction_start_nonblock; tdb_traverse; -- cgit