66 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
			
		
		
	
	
			66 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
Index: tdb/tdb.h
 | 
						|
===================================================================
 | 
						|
--- tdb.orig/tdb.h
 | 
						|
+++ tdb/tdb.h
 | 
						|
@@ -76,6 +76,60 @@ typedef struct TDB_DATA {
 | 
						|
 #endif
 | 
						|
 #endif
 | 
						|
 
 | 
						|
+/* ext2fs tdb renames */
 | 
						|
+#define tdb_open ext2fs_tdb_open
 | 
						|
+#define tdb_open_ex ext2fs_tdb_open_ex
 | 
						|
+#define tdb_set_max_dead ext2fs_tdb_set_max_dead
 | 
						|
+#define tdb_reopen ext2fs_tdb_reopen
 | 
						|
+#define tdb_reopen_all ext2fs_tdb_reopen_all
 | 
						|
+#define tdb_set_logging_function ext2fs_tdb_set_logging_function
 | 
						|
+#define tdb_error ext2fs_tdb_error
 | 
						|
+#define tdb_errorstr ext2fs_tdb_errorstr
 | 
						|
+#define tdb_fetch ext2fs_tdb_fetch
 | 
						|
+#define tdb_parse_record ext2fs_tdb_parse_record
 | 
						|
+#define tdb_delete ext2fs_tdb_delete
 | 
						|
+#define tdb_store ext2fs_tdb_store
 | 
						|
+#define tdb_append ext2fs_tdb_append
 | 
						|
+#define tdb_close ext2fs_tdb_close
 | 
						|
+#define tdb_firstkey ext2fs_tdb_firstkey
 | 
						|
+#define tdb_nextkey ext2fs_tdb_nextkey
 | 
						|
+#define tdb_traverse ext2fs_tdb_traverse
 | 
						|
+#define tdb_traverse_read ext2fs_tdb_traverse_read
 | 
						|
+#define tdb_exists ext2fs_tdb_exists
 | 
						|
+#define tdb_lockall ext2fs_tdb_lockall
 | 
						|
+#define tdb_unlockall ext2fs_tdb_unlockall
 | 
						|
+#define tdb_lockall_read ext2fs_tdb_lockall_read
 | 
						|
+#define tdb_unlockall_read ext2fs_tdb_unlockall_read
 | 
						|
+#define tdb_name ext2fs_tdb_name
 | 
						|
+#define tdb_fd ext2fs_tdb_fd
 | 
						|
+#define tdb_log_fn ext2fs_tdb_log_fn
 | 
						|
+#define tdb_get_logging_private ext2fs_tdb_get_logging_private
 | 
						|
+#define tdb_transaction_start ext2fs_tdb_transaction_start
 | 
						|
+#define tdb_transaction_commit ext2fs_tdb_transaction_commit
 | 
						|
+#define tdb_transaction_cancel ext2fs_tdb_transaction_cancel
 | 
						|
+#define tdb_transaction_recover ext2fs_tdb_transaction_recover
 | 
						|
+#define tdb_get_seqnum ext2fs_tdb_get_seqnum
 | 
						|
+#define tdb_hash_size ext2fs_tdb_hash_size
 | 
						|
+#define tdb_map_size ext2fs_tdb_map_size
 | 
						|
+#define tdb_get_flags ext2fs_tdb_get_flags
 | 
						|
+#define tdb_chainlock ext2fs_tdb_chainlock
 | 
						|
+#define tdb_chainunlock ext2fs_tdb_chainunlock
 | 
						|
+#define tdb_chainlock_read ext2fs_tdb_chainlock_read
 | 
						|
+#define tdb_chainunlock_read ext2fs_tdb_chainunlock_read
 | 
						|
+#define tdb_dump_all ext2fs_tdb_dump_all
 | 
						|
+#define tdb_printfreelist ext2fs_tdb_printfreelist
 | 
						|
+#define tdb_validate_freelist ext2fs_tdb_validate_freelist
 | 
						|
+#define tdb_chainlock_mark ext2fs_tdb_chainlock_mark
 | 
						|
+#define tdb_chainlock_nonblock ext2fs_tdb_chainlock_nonblock
 | 
						|
+#define tdb_chainlock_unmark ext2fs_tdb_chainlock_unmark
 | 
						|
+#define tdb_enable_seqnum ext2fs_tdb_enable_seqnum
 | 
						|
+#define tdb_increment_seqnum_nonblock ext2fs_tdb_increment_seqnum_nonblock
 | 
						|
+#define tdb_lock_nonblock ext2fs_tdb_lock_nonblock
 | 
						|
+#define tdb_lockall_mark ext2fs_tdb_lockall_mark
 | 
						|
+#define tdb_lockall_nonblock ext2fs_tdb_lockall_nonblock
 | 
						|
+#define tdb_lockall_read_nonblock ext2fs_tdb_lockall_read_nonblock
 | 
						|
+#define tdb_lockall_unmark ext2fs_tdb_lockall_unmark
 | 
						|
+
 | 
						|
 /* this is the context structure that is returned from a db open */
 | 
						|
 typedef struct tdb_context TDB_CONTEXT;
 | 
						|
 
 |